From e3b9d60938b1299f2f66e68ff291060654c58d66 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 5 Aug 2012 03:13:43 +0300 Subject: Move some hardcoded paddings to themes. --- src/gui/setup.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/gui/setup.cpp') diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index b0d2f4ec0..8fbe012e6 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -76,11 +76,12 @@ Setup::Setup(): nullptr }; int x = width; + const int buttonPadding = getOption("buttonPadding", 5); for (const char **curBtn = buttonNames; *curBtn; ++ curBtn) { Button *btn = new Button(gettext(*curBtn), *curBtn, this); - x -= btn->getWidth() + 5; - btn->setPosition(x, height - btn->getHeight() - 5); + x -= btn->getWidth() + buttonPadding; + btn->setPosition(x, height - btn->getHeight() - buttonPadding); add(btn); // Store this button, as it needs to be enabled/disabled -- cgit v1.2.3-60-g2f50