Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2020-08-21 12:18:19 +0300
committerHannah von Reth <vonreth@kde.org>2020-08-21 12:38:17 +0300
commitc721733849e852d59bc04883097aed8d1d7242e1 (patch)
treee2b1deb034a41c77f6ba2f5b0fa9e9b33c370edb /src/gui/settingsdialog.h
parent9e7b4564a2e2ccbc7618b49f005d94c0ee1b1efc (diff)
Asure we have a decent window size
Diffstat (limited to 'src/gui/settingsdialog.h')
-rw-r--r--src/gui/settingsdialog.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/settingsdialog.h b/src/gui/settingsdialog.h
index fa52c2bbd..414069529 100644
--- a/src/gui/settingsdialog.h
+++ b/src/gui/settingsdialog.h
@@ -51,7 +51,8 @@ class SettingsDialog : public QMainWindow
public:
explicit SettingsDialog(ownCloudGui *gui, QWidget *parent = nullptr);
- ~SettingsDialog() override;
+ ~SettingsDialog() override;
+ QSize minimumSizeHint() const override;
QWidget* currentPage();
@@ -93,6 +94,7 @@ private:
QAction *_activityAction;
ownCloudGui *_gui;
+
};
}