┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2008-11-30 17:13:16 +0000
committerPeter Penz <[email protected]>2008-11-30 17:13:16 +0000
commit8dc7983f8a56ea1e27e506ad3bd8ad1c6ed2688b (patch)
treea51aa77f68b597d8e77a38e229c1a6ed61470b9d /src
parent3866dec5c5b2375d221a252a1619506dc0a45f66 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/dolphiniconsview.cpp2
1 files changed, 1 insertions, 1 deletions
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<KCategorizedSortFilterProxyModel*>(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();