┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphiniconsview.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-11-19 17:44:21 +0000
committerPeter Penz <[email protected]>2007-11-19 17:44:21 +0000
commit8c045dfec6ac0e8fd36dcba0c4a721269e0fe7d4 (patch)
tree9cf6eb997a7c9d40b62b76dc300a7cf4331635c5 /src/dolphiniconsview.cpp
parent1ce2fb199db7bdf5baf05b61e4e58c549404b4df (diff)
Icons view: assure that the vertical spacing does not grow as fast as the horizontal spacing. For the default settings this means that the viewport can now be reached easier than before, while not wasting too much vertical space.
svn path=/trunk/KDE/kdebase/apps/; revision=738783
Diffstat (limited to 'src/dolphiniconsview.cpp')
-rw-r--r--src/dolphiniconsview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphiniconsview.cpp b/src/dolphiniconsview.cpp
index 08ff9cf48..0da9eb279 100644
--- a/src/dolphiniconsview.cpp
+++ b/src/dolphiniconsview.cpp
@@ -415,7 +415,7 @@ void DolphinIconsView::updateGridSize(bool showPreview, int additionalInfoCount)
}
const int spacing = settings->gridSpacing();
- setGridSize(QSize(itemWidth + spacing, itemHeight + spacing));
+ setGridSize(QSize(itemWidth + spacing * 2, itemHeight + spacing));
m_itemSize = QSize(itemWidth, itemHeight);