From 9831905309677c7dc4626c5d99777416cffc39ff Mon Sep 17 00:00:00 2001 From: Shaun Reich Date: Thu, 9 Feb 2012 13:22:13 -0500 Subject: [PATCH] hack margins so listview doesn't suck --- declarativeimports/plasmacomponents/qml/Highlight.qml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/declarativeimports/plasmacomponents/qml/Highlight.qml b/declarativeimports/plasmacomponents/qml/Highlight.qml index dee24a922..4ac0f8059 100644 --- a/declarativeimports/plasmacomponents/qml/Highlight.qml +++ b/declarativeimports/plasmacomponents/qml/Highlight.qml @@ -68,10 +68,11 @@ Item { anchors { fill: parent - topMargin: -background.margins.top - leftMargin: -background.margins.left - bottomMargin: -background.margins.bottom - rightMargin: -background.margins.right + //FIXME: breaks listviews and highlight item + // topMargin: -background.margins.top + // leftMargin: -background.margins.left + // bottomMargin: -background.margins.bottom + // rightMargin: -background.margins.right } } }