Bug 165367 - smaller grid spacing wanted
Summary: smaller grid spacing wanted
Status: RESOLVED FIXED
Alias: None
Product: dolphin
Classification: Applications
Component: general (show other bugs)
Version: 16.12.2
Platform: openSUSE Linux
: NOR wishlist
Target Milestone: ---
Assignee: Peter Penz
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-29 23:45 UTC by Daniel
Modified: 2008-11-05 20:43 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Daniel 2008-06-29 23:45:23 UTC
Version:            (using KDE 4.0.83)
Installed from:    SuSE RPMs
OS:                Linux

Hi, I'm used to Windows XP Explorer List View.
That's why I already changed my fonts to Tahoma,8.
Luckily I can get Dolphin to look pretty similar to Explorer.
But unfortunately, the smallest grid spacing level is "small",
which is still too much spacing in my eyes.
The spacing I would like for Dolphin's view
is already used in KDE's file open dialog.
So my request is another grid spacing level: "tiny"
with spacing like in the file open dialog.

Here is a screenshot
http://img102.imageshack.us/img102/2007/snapshot1nm8.jpg
In the foreground (the file open dialog) you see the spacing
I would like for Dolphin (in the background).

Thanks in advance!
Comment 1 Peter Penz 2008-06-30 00:01:20 UTC
Thanks Daniel for the suggestion! I'll take care in KDE 4.2 to make this more flexible (it's too late already for KDE 4.1).
Comment 2 Daniel 2008-07-02 21:08:54 UTC
Even better would be a slider to steplessly adjust the grid spacing,
because nearly everything else in KDE4 is steplessly adjustable.
Comment 3 Yogesh Marwaha 2008-08-07 15:52:38 UTC
Just to add that
1) icon spacing could also be proportional to icon size and
2) there is a lot of difference in the largest and largest-1 icon size, I want one more size option there (between them), at least for preview if not for icon.
Thanks.
Comment 4 Peter Penz 2008-11-05 20:43:51 UTC
SVN commit 880533 by ppenz:

Allow having a smaller text width for the icons view (Text size: "Small"), so that the same grid size can be achieved like in Konqueror for KDE 3. The default size for Dolphin will stay on "Medium".

CCBUG: 174342

 M  +1 -0      iconsviewsettingspage.cpp  
 M  +1 -1      iconsviewsettingspage.h  


--- trunk/KDE/kdebase/apps/dolphin/src/iconsviewsettingspage.cpp #880532:880533
@@ -91,6 +91,7 @@
     m_textWidthBox->addItem(i18nc("@item:inlistbox Text width", "Small"));
     m_textWidthBox->addItem(i18nc("@item:inlistbox Text width", "Medium"));
     m_textWidthBox->addItem(i18nc("@item:inlistbox Text width", "Large"));
+    m_textWidthBox->addItem(i18nc("@item:inlistbox Text width", "Huge"));
     connect(m_textWidthBox, SIGNAL(activated(int)), this, SIGNAL(changed()));
 
     QGridLayout* textGroupLayout = new QGridLayout(textGroup);
--- trunk/KDE/kdebase/apps/dolphin/src/iconsviewsettingspage.h #880532:880533
@@ -72,7 +72,7 @@
         GridSpacingInc  =  12,
         LeftToRightBase = 128,
         LeftToRightInc  =  64,
-        TopToBottomBase =  64,
+        TopToBottomBase =  32,
         TopToBottomInc  =  32
     };