┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Fernández López <[email protected]>2007-06-19 18:59:13 +0000
committerRafael Fernández López <[email protected]>2007-06-19 18:59:13 +0000
commit051f0b975d9e20e2cb47fced797726c41db635b2 (patch)
treef33592f6462e022556f3b722de940b5added4fc7
parenteaa0ff560b273d785d8f7524bc3ddc597ba14d96 (diff)
Fix the problem "the scrollbar remains if it was shown on the
categorized view, and now it has been disabled (the categorized view)" svn path=/trunk/KDE/kdebase/apps/; revision=677706
-rw-r--r--src/klistview.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/klistview.cpp b/src/klistview.cpp
index 553c4e400..fff694e35 100644
--- a/src/klistview.cpp
+++ b/src/klistview.cpp
@@ -486,6 +486,10 @@ void KListView::setItemCategorizer(KItemCategorizer *itemCategorizer)
{
rowsInserted(QModelIndex(), 0, d->proxyModel->rowCount() - 1);
}
+ else
+ {
+ updateGeometries();
+ }
}
QModelIndex KListView::indexAt(const QPoint &point) const