diff options
| author | Peter Penz <[email protected]> | 2008-02-14 20:26:11 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-02-14 20:26:11 +0000 |
| commit | f260f7b54427d84da6663822da826ce65fe0e6bd (patch) | |
| tree | 50b5c581303c8f8f7ba04407a0b10417e115f4c3 /src | |
| parent | 57e2cd9ae9ad4621b0ea82c5dd28c9e122aaa8df (diff) | |
fixed issue that the item height does not match to the number of lines in the default setup of Dolphin
svn path=/trunk/KDE/kdebase/apps/; revision=775065
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphin_iconsmodesettings.kcfg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dolphin_iconsmodesettings.kcfg b/src/dolphin_iconsmodesettings.kcfg index 4d20c8876..22871dcf9 100644 --- a/src/dolphin_iconsmodesettings.kcfg +++ b/src/dolphin_iconsmodesettings.kcfg @@ -32,7 +32,7 @@ check 'void IconsViewSettingsPage::applySettings()' as reference (iconsviewsettingspage.cpp): itemHeight += fontHeight * numberOfTextlines + 10; /--> - <default code="true">KIconLoader::SizeMedium + QFontMetrics(KGlobalSettings::generalFont()).height() + 10</default> + <default code="true">KIconLoader::SizeMedium + QFontMetrics(KGlobalSettings::generalFont()).height() * 2 + 10</default> </entry> <entry name="ItemWidth" type="Int"> <label context="@label">Item width</label> @@ -52,6 +52,7 @@ </entry> <entry name="NumberOfTextlines" type="Int"> <label context="@label">Number of textlines</label> + <!-- don't forget adjusting the "ItemHeight" too when changing this value /--> <default>2</default> </entry> <entry name="PreviewSize" type="Int"> |
