diff options
Diffstat (limited to 'src/gui/setup.cpp')
-rw-r--r-- | src/gui/setup.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
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 |