diff options
| author | Felix Ernst <[email protected]> | 2023-11-24 12:18:19 +0100 |
|---|---|---|
| committer | Felix Ernst <[email protected]> | 2023-11-24 11:52:54 +0000 |
| commit | 139c729b4ab5d0611469f1725468276adcf21f78 (patch) | |
| tree | c9ee0df0c12d516998801df7e96a192e89f24b64 /src/statusbar/statusbarspaceinfo.cpp | |
| parent | d3637f380ccca26a281331a02ce76ed60e84cfe3 (diff) | |
Reduce status bar minimum width
This is to make sure that when the window is resized it is less
likely that the places panel will be resized only because the
status bar doesn't want to become very narrow in width.
Diffstat (limited to 'src/statusbar/statusbarspaceinfo.cpp')
| -rw-r--r-- | src/statusbar/statusbarspaceinfo.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/statusbar/statusbarspaceinfo.cpp b/src/statusbar/statusbarspaceinfo.cpp index b9dafe997..5ef5144e5 100644 --- a/src/statusbar/statusbarspaceinfo.cpp +++ b/src/statusbar/statusbarspaceinfo.cpp @@ -99,6 +99,11 @@ void StatusBarSpaceInfo::hideEvent(QHideEvent *event) QWidget::hideEvent(event); } +QSize StatusBarSpaceInfo::minimumSizeHint() const +{ + return QSize(); +} + void StatusBarSpaceInfo::updateMenu() { m_buttonMenu->clear(); |
