devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=ab257692f69da8f62e1c8533161b4112eec22cc4
commit ab257692f69da8f62e1c8533161b4112eec22cc4 Author: Simon Tischer <[email protected]> Date: Mon Apr 13 19:00:23 2020 +0200 wallpaper selector - fix preview of personl wallpapers Reviewed-by: Christopher Michael <[email protected]> Differential Revision: https://phab.enlightenment.org/D11694 --- src/modules/conf_theme/e_int_config_wallpaper.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/conf_theme/e_int_config_wallpaper.c b/src/modules/conf_theme/e_int_config_wallpaper.c index 861e76183..74dce4ceb 100644 --- a/src/modules/conf_theme/e_int_config_wallpaper.c +++ b/src/modules/conf_theme/e_int_config_wallpaper.c @@ -522,8 +522,8 @@ _basic_create(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dialog_Data e_widget_table_object_align_append(ot, tt, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0); - mw = 500; - mh = (500 * zone->h) / zone->w; + mw = 320; + mh = (320 * zone->h) / zone->w; oa = e_widget_aspect_add(evas, mw, mh); ow = e_widget_preview_add(evas, mw, mh); evas_object_size_hint_min_set(ow, mw, mh); @@ -724,8 +724,8 @@ _adv_create(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dialog_Data * e_widget_table_object_align_append(ot, tt, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0); - mw = 500; - mh = (500 * zone->h) / zone->w; + mw = 320; + mh = (320 * zone->h) / zone->w; oa = e_widget_aspect_add(evas, mw, mh); ow = e_widget_preview_add(evas, mw, mh); evas_object_size_hint_min_set(ow, mw, mh); --
