From: Peter Penz Date: Wed, 26 Sep 2007 13:34:28 +0000 (+0000) Subject: use the fixed resizing mode (it is assured that each column stays readable) X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/3713f1991ac7862296ccdcbe02b3ecf909e2c295 use the fixed resizing mode (it is assured that each column stays readable) svn path=/trunk/KDE/kdebase/apps/; revision=717263 --- diff --git a/src/dolphindetailsview.cpp b/src/dolphindetailsview.cpp index 3170f6c90..b15de900b 100644 --- a/src/dolphindetailsview.cpp +++ b/src/dolphindetailsview.cpp @@ -309,7 +309,7 @@ void DolphinDetailsView::resizeEvent(QResizeEvent* event) if (useFixedWidth) { // the current width of the name-column is too small, hence // use a fixed size - headerView->setResizeMode(QHeaderView::Interactive); + headerView->setResizeMode(QHeaderView::Fixed); headerView->setResizeMode(0, QHeaderView::Fixed); headerView->resizeSection(KDirModel::Name, minWidth); } else if (headerView->resizeMode(0) != QHeaderView::Stretch) {