From kde-commits Thu Jun 05 18:37:26 2008 From: =?utf-8?q?Rafael=20Fern=C3=A1ndez=20L=C3=B3pez?= Date: Thu, 05 Jun 2008 18:37:26 +0000 To: kde-commits Subject: branches/KDE/4.0/kdelibs/kfile Message-Id: <1212691046.120005.8150.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121269105716872 SVN commit 817313 by ereslibre: Backport fix problem. Each time you opened the open/save dialog, the places widget increased its width by 10 pixels. M +1 -1 kfilewidget.cpp --- branches/KDE/4.0/kdelibs/kfile/kfilewidget.cpp #817312:817313 @@ -1530,7 +1530,7 @@ urlNavigator->setUrlEditable( !configGroup.readEntry(BreadcrumbNavigation, true) ); int w1 = q->minimumSize().width(); - int w2 = toolbar->sizeHint().width() + 10; + int w2 = toolbar->sizeHint().width(); if (w1 < w2) q->setMinimumWidth(w2); }