From 3f306184bd1679cf2d903d004639b626cc422f48 Mon Sep 17 00:00:00 2001 From: David Maciejak Date: Sat, 16 Aug 2014 23:57:56 +0800 Subject: [PATCH] wmaker: unset default app logo size This patch is setting the app logo max size to 128 as what can be found in the rest of the code, so the logo is not restricted anymore to the icon size defined by WPrefs. The goal is to solve the resize issue that appears when the logo is used in Info and Exit panel. --- src/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen.c b/src/screen.c index bb9d9b3f..250f9962 100644 --- a/src/screen.c +++ b/src/screen.c @@ -398,7 +398,7 @@ static void createPixmaps(WScreen * scr) void create_logo_image(WScreen *scr) { - RImage *image = get_icon_image(scr, "Logo", "WMPanel", wPreferences.icon_size); + RImage *image = get_icon_image(scr, "Logo", "WMPanel", 128); if (!image) { wwarning(_("could not load logo image for panels: %s"), RMessageForError(RErrorCode));