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); }