diff options
Diffstat (limited to 'src/gui/windows/connectiondialog.cpp')
-rw-r--r-- | src/gui/windows/connectiondialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/windows/connectiondialog.cpp b/src/gui/windows/connectiondialog.cpp index ec23ab646..8faf8b859 100644 --- a/src/gui/windows/connectiondialog.cpp +++ b/src/gui/windows/connectiondialog.cpp @@ -51,9 +51,9 @@ ConnectionDialog::ConnectionDialog(const std::string &text, // TRANSLATORS: connection dialog button this, _("Cancel"), "cancelButton", this); - place(0, 0, progressIndicator); - place(0, 1, label); - place(0, 2, cancelButton).setHAlign(LayoutCell::CENTER); + place(0, 0, progressIndicator, 1, 1); + place(0, 1, label, 1, 1); + place(0, 2, cancelButton, 1, 1).setHAlign(LayoutCell::CENTER); reflowLayout(); center(); |