Summary: | smaller grid spacing wanted | ||
---|---|---|---|
Product: | [Applications] dolphin | Reporter: | Daniel <Daniel919> |
Component: | general | Assignee: | Peter Penz <peter.penz19> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | 16.12.2 | ||
Target Milestone: | --- | ||
Platform: | openSUSE | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Daniel
2008-06-29 23:45:23 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). Even better would be a slider to steplessly adjust the grid spacing, because nearly everything else in KDE4 is steplessly adjustable. 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. 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 }; |