diff --git a/containments/desktop/package/contents/ui/FolderItemDelegate.qml b/containments/desktop/package/contents/ui/FolderItemDelegate.qml --- a/containments/desktop/package/contents/ui/FolderItemDelegate.qml +++ b/containments/desktop/package/contents/ui/FolderItemDelegate.qml @@ -195,7 +195,7 @@ } return (icon.height + (2 * units.smallSpacing) + (label.lineCount - * theme.mSize(theme.defaultFont).height) + (2 * units.largeSpacing)); + * theme.mSize(theme.defaultFont).height) + (3 * units.smallSpacing)); } PlasmaCore.IconItem { @@ -225,7 +225,7 @@ ] anchors { - topMargin: units.largeSpacing + topMargin: (2 * units.smallSpacing) leftMargin: units.smallSpacing } @@ -257,8 +257,8 @@ } PropertyChanges { target: label - anchors.topMargin: 2 * units.smallSpacing - width: Math.min(label.implicitWidth + units.smallSpacing, parent.width - units.smallSpacing * 8) + anchors.topMargin: units.smallSpacing + width: Math.min(label.implicitWidth + units.smallSpacing, parent.width - units.smallSpacing * 4) maximumLineCount: plasmoid.configuration.textLines horizontalAlignment: Text.AlignHCenter } @@ -316,9 +316,6 @@ return true; } - x: units.smallSpacing * 3 - y: units.smallSpacing * 3 - z: 3 anchors { diff --git a/containments/desktop/package/contents/ui/FolderView.qml b/containments/desktop/package/contents/ui/FolderView.qml --- a/containments/desktop/package/contents/ui/FolderView.qml +++ b/containments/desktop/package/contents/ui/FolderView.qml @@ -497,7 +497,7 @@ return gridView.width; } - return iconSize + (4 * units.largeSpacing); + return iconSize + (2 * units.largeSpacing) + (2 * units.smallSpacing); } cellHeight: { @@ -508,7 +508,7 @@ } return (iconSize + (theme.mSize(theme.defaultFont).height * plasmoid.configuration.textLines) - + (3 * units.smallSpacing) + (2 * units.largeSpacing)); + + (6 * units.smallSpacing)); } delegate: FolderItemDelegate {