diff options
| author | Peter Penz <[email protected]> | 2011-02-02 17:30:25 +0100 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2011-02-02 17:30:25 +0100 |
| commit | 28f00f36d74572510aee58111f1a9f884e148f6b (patch) | |
| tree | 5ab4ddd3d7bc0889eeac2e5719cced39969261c6 /src/panels/panel.h | |
| parent | 098113498710fc06ea901c5f9c13fc25f6137f7d (diff) | |
Provide a default size-hint for all panels
This fixes the issue that the initial size of the Filter Panel is too small.
Diffstat (limited to 'src/panels/panel.h')
| -rw-r--r-- | src/panels/panel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/panels/panel.h b/src/panels/panel.h index 83ed3da3b..2e8d46e40 100644 --- a/src/panels/panel.h +++ b/src/panels/panel.h @@ -50,6 +50,9 @@ public: void setCustomContextMenuActions(const QList<QAction*>& actions); QList<QAction*> customContextMenuActions() const; + /** @see QWidget::sizeHint() */ + virtual QSize sizeHint() const; + public slots: /** * This is invoked every time the folder being displayed in the |
