From 625752f85dfb5771f0f71977fc52b8503a19d5e8 Mon Sep 17 00:00:00 2001 From: Camila Date: Tue, 15 Dec 2020 21:55:31 +0100 Subject: [PATCH 1/2] General settings: move buttons to the bottom left of their group boxes. Signed-off-by: Camila --- src/gui/generalsettings.ui | 97 +++++++++++++++++++------------------- 1 file changed, 48 insertions(+), 49 deletions(-) diff --git a/src/gui/generalsettings.ui b/src/gui/generalsettings.ui index f7347884a5..3cc242864f 100644 --- a/src/gui/generalsettings.ui +++ b/src/gui/generalsettings.ui @@ -6,7 +6,7 @@ 0 0 - 553 + 554 558 @@ -98,8 +98,8 @@ Updates - - + + @@ -111,22 +111,9 @@ - - - - - 0 - 0 - - - - &Check for Update now - - - - + @@ -192,6 +179,19 @@ + + + + + 0 + 0 + + + + &Check for Update now + + + @@ -214,37 +214,6 @@ Advanced - - - - - - Edit &Ignored Files - - - - - - - Create Debug Archive … - - - - - - - Qt::Horizontal - - - - 555 - 20 - - - - - - @@ -328,6 +297,37 @@ + + + + + + Edit &Ignored Files + + + + + + + Create Debug Archive … + + + + + + + Qt::Horizontal + + + + 555 + 20 + + + + + + @@ -342,7 +342,6 @@ newFolderLimitSpinBox crashreporterCheckBox autoCheckForUpdatesCheckBox - updateButton restartButton From 0e0ea9d81a88a079faa7336c9664eb18859b1647 Mon Sep 17 00:00:00 2001 From: Camila Date: Tue, 15 Dec 2020 22:11:31 +0100 Subject: [PATCH 2/2] Update the settings dialog window title. Signed-off-by: Camila --- src/gui/settingsdialog.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui/settingsdialog.cpp b/src/gui/settingsdialog.cpp index 1a06a5ec19..cb503ef14e 100644 --- a/src/gui/settingsdialog.cpp +++ b/src/gui/settingsdialog.cpp @@ -100,7 +100,9 @@ SettingsDialog::SettingsDialog(ownCloudGui *gui, QWidget *parent) addAction(closeWindowAction); setObjectName("Settings"); // required as group for saveGeometry call - setWindowTitle(Theme::instance()->appNameGUI()); + + //: This name refers to the application name e.g Nextcloud + setWindowTitle(tr("%1 Settings").arg(Theme::instance()->appNameGUI())); connect(AccountManager::instance(), &AccountManager::accountAdded, this, &SettingsDialog::accountAdded);