From 8dc7983f8a56ea1e27e506ad3bd8ad1c6ed2688b Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Sun, 30 Nov 2008 17:13:16 +0000 Subject: [PATCH] fixed issue that the text width gets very small when turning on previews in the columns arrangement BUG: 174801 svn path=/trunk/KDE/kdebase/apps/; revision=890925 --- src/dolphiniconsview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dolphiniconsview.cpp b/src/dolphiniconsview.cpp index 52be40b02..6a54bd5c3 100644 --- a/src/dolphiniconsview.cpp +++ b/src/dolphiniconsview.cpp @@ -152,7 +152,7 @@ void DolphinIconsView::dataChanged(const QModelIndex& topLeft, const QModelIndex KCategorizedView::dataChanged(topLeft, bottomRight); KCategorizedSortFilterProxyModel* proxyModel = dynamic_cast(model()); - if ((flow() == QListView::LeftToRight) && !proxyModel->isCategorizedModel()) { + if (!proxyModel->isCategorizedModel()) { // bypass a QListView issue that items are not layout correctly if the decoration size of // an index changes scheduleDelayedItemsLayout(); -- 2.47.3