From: Ismael Asensio Date: Fri, 3 Mar 2023 22:49:19 +0000 (+0100) Subject: search: Prevent the search box from enlarging the view X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/ba60b6ada3121389dcd4ee51aaa9067d681b187a search: Prevent the search box from enlarging the view By default, the search filters widget calculates its `minimumSizeHint` as the sum of its components' minimum widths. This minimum width hint will scale up the widgets hierarchy, finally imposing a minimum width to the contents view, which in certain conditions can take the space from the side panels. Let's set a minimum width hint of 0, so it is the filters widget which always adapts to the available view size instead. BUG: 466796 FIXED-IN: 23.04 --- diff --git a/src/search/dolphinfacetswidget.cpp b/src/search/dolphinfacetswidget.cpp index ffc07442a..501f3a956 100644 --- a/src/search/dolphinfacetswidget.cpp +++ b/src/search/dolphinfacetswidget.cpp @@ -104,6 +104,11 @@ void DolphinFacetsWidget::changeEvent(QEvent *event) } } +QSize DolphinFacetsWidget::minimumSizeHint() const +{ + return QSize(0, m_typeSelector->minimumHeight()); +} + void DolphinFacetsWidget::resetSearchTerms() { m_typeSelector->setCurrentIndex(0); diff --git a/src/search/dolphinfacetswidget.h b/src/search/dolphinfacetswidget.h index 1d266ac97..c7358e212 100644 --- a/src/search/dolphinfacetswidget.h +++ b/src/search/dolphinfacetswidget.h @@ -48,6 +48,8 @@ public: void setFacetType(const QString &type); + QSize minimumSizeHint() const override; + Q_SIGNALS: void facetChanged();