┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-09-26 13:34:28 +0000
committerPeter Penz <[email protected]>2007-09-26 13:34:28 +0000
commit3713f1991ac7862296ccdcbe02b3ecf909e2c295 (patch)
tree67a13cc100eb39f27c1544a425ce02be836ca723
parent89a12482f7b7bf75068b711f6c1f80c1211021b1 (diff)
use the fixed resizing mode (it is assured that each column stays readable)
svn path=/trunk/KDE/kdebase/apps/; revision=717263
-rw-r--r--src/dolphindetailsview.cpp2
1 files changed, 1 insertions, 1 deletions
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) {