From d4ca82e6d3c8c80685bc809c64bdaf61cc0fa09f Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Mon, 16 Mar 2015 20:20:38 +0100 Subject: [PATCH] IconContextMenu: Right-align icons --- touch/IconContextMenu.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/touch/IconContextMenu.qml b/touch/IconContextMenu.qml index 68711ea..b27fdf6 100644 --- a/touch/IconContextMenu.qml +++ b/touch/IconContextMenu.qml @@ -27,6 +27,10 @@ Item { Row { id: contextMenuRow - anchors.centerIn: parent + anchors { + verticalCenter: parent.verticalCenter + right: parent.right + margins: Constants.layout.padding * pgst.scalef + } } }