diff --git a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml index 5742e12a3c..298ecc1496 100644 --- a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml @@ -53,6 +53,7 @@ Item onClicked: menu.opened ? menu.close() : menu.open() anchors.right: profileWarningReset.left + anchors.rightMargin: UM.Theme.getSize("narrow_margin").width width: UM.Theme.getSize("print_setup_big_item").width - profileWarningReset.width height: textLabel.contentHeight + 2 * UM.Theme.getSize("narrow_margin").height hoverEnabled: true @@ -157,6 +158,7 @@ Item id: profileWarningReset width: childrenRect.width anchors.right: parent.right + anchors.verticalCenter: parent.verticalCenter fullWarning: false } diff --git a/resources/qml/PrintSetupSelector/ProfileWarningReset.qml b/resources/qml/PrintSetupSelector/ProfileWarningReset.qml index 0edc4eb6ab..7661943742 100644 --- a/resources/qml/PrintSetupSelector/ProfileWarningReset.qml +++ b/resources/qml/PrintSetupSelector/ProfileWarningReset.qml @@ -91,11 +91,6 @@ Item return catalog.i18nc("@info %1 is the name of a profile", "Recommended settings (for %1) were altered.").arg(profile_name); } } - PropertyChanges - { - target: warningIcon - color: UM.Theme.getColor("success") - } }, State { @@ -145,7 +140,7 @@ Item Item { id: buttonsSpacer - width: UM.Theme.getSize("narrow_margin").width + width: UM.Theme.getSize("default_margin").width anchors.right: compareAndSaveButton.left }