diff options
Diffstat (limited to 'src/gui/editdialog.cpp')
-rw-r--r-- | src/gui/editdialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/editdialog.cpp b/src/gui/editdialog.cpp index 37033af64..78ce2f8ba 100644 --- a/src/gui/editdialog.cpp +++ b/src/gui/editdialog.cpp @@ -53,7 +53,8 @@ EditDialog::EditDialog(const std::string &title, const std::string &msg, mTextField->setPosition(getPadding(), getPadding()); mTextField->setWidth(width - (2 * getPadding())); - okButton->setPosition((width - okButton->getWidth()) / 2, height + 8); + okButton->setPosition((width - okButton->getWidth()) / 2, + height + getOption("buttonPadding", 8)); add(mTextField); add(okButton); |