Hi,
i've created icon on the kde desktop for all the programs i use. but on the kde desktop the icons use much more space than the icons on windows 7 desktop. it seems there is no settings dialog to edit this, but the user OneLine has written something here: https://www.kubuntuforums.net/showth...l=1#post372886. the file looks a little bit different on my system (mint sarah), but i could reduce the space between the icons - but with strange behaviour. when i mark the icons, they overlap to the mark of the icon above or under it. the overlapping area is bigger when the text under the icon has 2 lines.
this is what i've edited in the folderview.qml:
what i want: no overlapping and always the same "mark size", no matter the text is in one or two lines. what else can i edit in the file?
meyer
i've created icon on the kde desktop for all the programs i use. but on the kde desktop the icons use much more space than the icons on windows 7 desktop. it seems there is no settings dialog to edit this, but the user OneLine has written something here: https://www.kubuntuforums.net/showth...l=1#post372886. the file looks a little bit different on my system (mint sarah), but i could reduce the space between the icons - but with strange behaviour. when i mark the icons, they overlap to the mark of the icon above or under it. the overlapping area is bigger when the text under the icon has 2 lines.
this is what i've edited in the folderview.qml:
Code:
cellWidth: { if (root.useListViewMode) { return gridView.width; } return iconSize + (2 * units.largeSpacing); } cellHeight: { if (root.useListViewMode) { return Math.ceil((Math.max(theme.mSize(theme.defaultFont).height, iconSize) + Math.max(highlightItemSvg.margins.top + highlightItemSvg.margins.bottom, listItemSvg.margins.top + listItemSvg.margins.bottom)) / 2) * 2; } return (iconSize + (theme.mSize(theme.defaultFont).height * plasmoid.configuration.textLines) + ([U][B]3[/B][/U] * units.smallSpacing) + ([U][B]1[/B][/U] * units.largeSpacing)); }
meyer
Comment