From da663898da2af468abef36f92ab2eb9b49f1798b Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Thu, 28 Jul 2016 20:47:44 +0900 Subject: [PATCH] bg: Fix bg with single jpeg images (no edj) When selecting a jpeg file directly as wallpaper, it will look very blurry, clearly loaded as a low-resolution image and then scaled up. Solution: don't load at size 64x64! For @OnlyHuman, thanks for the report. @fix --- src/bin/e_bg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_bg.c b/src/bin/e_bg.c index d31338db5..9a1ffc972 100644 --- a/src/bin/e_bg.c +++ b/src/bin/e_bg.c @@ -265,6 +265,7 @@ e_bg_zone_update(E_Zone *zone, E_Bg_Transition transition) { o = e_icon_add(e_comp->evas); e_icon_file_key_set(o, bgfile, NULL); + e_icon_scale_size_set(o, 0); e_icon_fill_inside_set(o, 0); } else