From 4f49a3816845d4c29c211edbf0a0092cc0073418 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 1 Jun 2021 11:40:20 +0200 Subject: [PATCH] Fix pre-heat button being ocluded by tooltip Fixes #9891 --- resources/qml/PrinterOutput/ExtruderBox.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/PrinterOutput/ExtruderBox.qml b/resources/qml/PrinterOutput/ExtruderBox.qml index ddd0a87c9f..63927cd98d 100644 --- a/resources/qml/PrinterOutput/ExtruderBox.qml +++ b/resources/qml/PrinterOutput/ExtruderBox.qml @@ -173,7 +173,7 @@ Item { base.showTooltip( base, - {x: 0, y: preheatTemperatureInputMouseArea.mapToItem(base, 0, 0).y}, + {x: 0, y: preheatTemperatureInputMouseArea.mapToItem(base, 0, -parent.height/2).y}, catalog.i18nc("@tooltip of temperature input", "The temperature to pre-heat the hotend to.") ); } @@ -366,7 +366,7 @@ Item { base.showTooltip( base, - {x: 0, y: preheatButton.mapToItem(base, 0, 0).y}, + {x: 0, y: preheatButton.mapToItem(base, 0, -parent.height).y}, catalog.i18nc("@tooltip of pre-heat", "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print.") ); }