Ephoto: Close directory browser when switching views. Update TODO.

This commit is contained in:
Stephen okra Houston 2016-07-25 11:24:58 -05:00
parent 1bb0c660a0
commit 69a25b6453
3 changed files with 4 additions and 3 deletions

2
TODO
View File

@ -6,8 +6,6 @@ Add more effects, filters as necessary
Clean up Cropper Clean up Cropper
-Thumb Browser: -Thumb Browser:
Add ability to view more info on image(Exif perhaps?) Add ability to view more info on image(Exif perhaps?)
-Slideshow:
Possibly look at implementing moving slideshows.
-Other Possibilities: -Other Possibilities:
Exporting to flickr, facebook, etc.. Exporting to flickr, facebook, etc..
Read straight from a camera Read straight from a camera

View File

@ -77,6 +77,7 @@ _ephoto_single_browser_show(Ephoto *ephoto, Ephoto_Entry *entry)
ephoto->menu_blocking = EINA_FALSE; ephoto->menu_blocking = EINA_FALSE;
ephoto->hover_blocking = EINA_FALSE; ephoto->hover_blocking = EINA_FALSE;
ephoto->editor_blocking = EINA_FALSE; ephoto->editor_blocking = EINA_FALSE;
ephoto->folders_toggle = EINA_TRUE;
ephoto_show_folders(ephoto, EINA_TRUE); ephoto_show_folders(ephoto, EINA_TRUE);
ephoto_single_browser_show_controls(ephoto); ephoto_single_browser_show_controls(ephoto);
ephoto_single_browser_adjust_offsets(ephoto); ephoto_single_browser_adjust_offsets(ephoto);
@ -103,6 +104,7 @@ _ephoto_slideshow_show(Ephoto *ephoto, Ephoto_Entry *entry)
ephoto->menu_blocking = EINA_FALSE; ephoto->menu_blocking = EINA_FALSE;
ephoto->hover_blocking = EINA_FALSE; ephoto->hover_blocking = EINA_FALSE;
ephoto->editor_blocking = EINA_FALSE; ephoto->editor_blocking = EINA_FALSE;
ephoto->folders_toggle = EINA_TRUE;
ephoto_show_folders(ephoto, EINA_TRUE); ephoto_show_folders(ephoto, EINA_TRUE);
ephoto_slideshow_adjust_offsets(ephoto); ephoto_slideshow_adjust_offsets(ephoto);
} }
@ -115,6 +117,7 @@ _ephoto_single_browser_back(void *data, Evas_Object *obj EINA_UNUSED,
Ephoto_Entry *entry = event_info; Ephoto_Entry *entry = event_info;
ephoto->selentries = NULL; ephoto->selentries = NULL;
ephoto->folders_toggle = EINA_TRUE;
ephoto_show_folders(ephoto, EINA_TRUE); ephoto_show_folders(ephoto, EINA_TRUE);
_ephoto_thumb_browser_show(ephoto, entry); _ephoto_thumb_browser_show(ephoto, entry);
} }

View File

@ -348,7 +348,7 @@ _slideshow_item_get(Ephoto_Slideshow *ss, Ephoto_Entry *entry, Evas_Object *pare
evas_object_data_set(layout, "entry", entry); evas_object_data_set(layout, "entry", entry);
image = elm_image_add(parent); image = elm_image_add(parent);
elm_image_preload_disabled_set(image, EINA_TRUE); elm_image_preload_disabled_set(image, EINA_FALSE);
elm_image_smooth_set(image, EINA_FALSE); elm_image_smooth_set(image, EINA_FALSE);
elm_image_file_set(image, entry->path, group); elm_image_file_set(image, entry->path, group);
elm_image_fill_outside_set(image, EINA_TRUE); elm_image_fill_outside_set(image, EINA_TRUE);