From cb82d5535035a3a4e81158230495084109dddbb2 Mon Sep 17 00:00:00 2001 From: Paul Cercueil Date: Thu, 16 Jan 2014 16:23:26 +0100 Subject: [PATCH] Set default link size to 80x50 --- src/gmenu2x.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gmenu2x.cpp b/src/gmenu2x.cpp index 2cee30a..4649d65 100644 --- a/src/gmenu2x.cpp +++ b/src/gmenu2x.cpp @@ -843,10 +843,10 @@ void GMenu2X::setSkin(const string &skin, bool setWallpaper) { } } - evalIntConf(&skinConfInt["topBarHeight"], 40, 32, 120); + evalIntConf(&skinConfInt["topBarHeight"], 50, 32, 120); evalIntConf(&skinConfInt["bottomBarHeight"], 20, 20, 120); - evalIntConf(&skinConfInt["linkHeight"], 40, 32, 120); - evalIntConf(&skinConfInt["linkWidth"], 60, 32, 120); + evalIntConf(&skinConfInt["linkHeight"], 50, 32, 120); + evalIntConf(&skinConfInt["linkWidth"], 80, 32, 120); if (menu != NULL) menu->skinUpdated();