From 22fadf396aa72e50b99269e06b4185a509a510a2 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Thu, 3 Mar 2016 16:43:39 +0100 Subject: [PATCH] Fix 2 pixel space between save button and device selection menu button --- resources/qml/SaveButton.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/resources/qml/SaveButton.qml b/resources/qml/SaveButton.qml index f08fe6bab6..acdb43d67b 100644 --- a/resources/qml/SaveButton.qml +++ b/resources/qml/SaveButton.qml @@ -79,8 +79,9 @@ Rectangle { enabled: base.backendState == 2 && base.activity == true height: UM.Theme.getSize("save_button_save_to_button").height - anchors.top:parent.top + anchors.top: parent.top anchors.right: deviceSelectionMenu.left; + anchors.rightMargin: -3 * UM.Theme.getSize("default_lining").width; text: UM.OutputDeviceManager.activeDeviceShortDescription onClicked: @@ -120,7 +121,7 @@ Rectangle { Button { id: deviceSelectionMenu tooltip: catalog.i18nc("@info:tooltip","Select the active output device"); - anchors.top:parent.top + anchors.top: parent.top anchors.right: parent.right anchors.rightMargin: UM.Theme.getSize("default_margin").width