summaryrefslogtreecommitdiff
path: root/src/eom-list-store.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eom-list-store.c')
-rw-r--r--src/eom-list-store.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/eom-list-store.c b/src/eom-list-store.c
index 4be7e02..71ac565 100644
--- a/src/eom-list-store.c
+++ b/src/eom-list-store.c
@@ -475,8 +475,9 @@ directory_visit (GFile *directory,
mime_type = g_file_info_get_content_type (children_info);
name = g_file_info_get_name (children_info);
- if (!g_str_has_prefix (name, ".")) {
- if (eom_image_is_supported_mime_type (mime_type)) {
+ if (!g_str_has_prefix (name, ".")) {
+ /* We support opening any image type, so let eom to add any images in the current directory to the store */
+ if (g_content_type_is_mime_type (mime_type, "image/*") || eom_image_is_supported_mime_type (mime_type)) {
load_uri = TRUE;
}
}