From 65c727fa9af7f97d5692f0bad5a8f620012ca978 Mon Sep 17 00:00:00 2001 From: Andy Williams Date: Sat, 29 Oct 2016 15:51:12 +0100 Subject: [PATCH] Ephoto: scale initial window size configuration --- src/bin/ephoto_config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/ephoto_config.c b/src/bin/ephoto_config.c index fdef43d..1615d33 100644 --- a/src/bin/ephoto_config.c +++ b/src/bin/ephoto_config.c @@ -767,8 +767,8 @@ ephoto_config_init(Ephoto *ephoto) ephoto->config->config_version = CONFIG_VERSION; ephoto->config->slideshow_timeout = 4.0; ephoto->config->slideshow_transition = eina_stringshare_add("fade"); - ephoto->config->window_width = 900; - ephoto->config->window_height = 500; + ephoto->config->window_width = 900*elm_config_scale_get(); + ephoto->config->window_height = 500*elm_config_scale_get(); ephoto->config->fsel_hide = 0; ephoto->config->lpane_size = .15; ephoto->config->open = eina_stringshare_add(getenv("HOME"));