From 5bff7067b0b28d0e17a81e2ecea8ff17d41a964a Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 6 Sep 2024 12:19:58 +0200 Subject: [PATCH] Remove the tooltip over the G-Code area CURA-12093 In this context, the tooltip is quite useless, and causes some issues because it sometimes appears when you don't want to. Moreover, the next commit will add a link to a detailed documentation. --- resources/qml/MachineSettings/GcodeTextArea.qml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/resources/qml/MachineSettings/GcodeTextArea.qml b/resources/qml/MachineSettings/GcodeTextArea.qml index 2538cd9f65..05d3711bae 100644 --- a/resources/qml/MachineSettings/GcodeTextArea.qml +++ b/resources/qml/MachineSettings/GcodeTextArea.qml @@ -12,20 +12,16 @@ import Cura 1.1 as Cura // // TextArea widget for editing Gcode in the Machine Settings dialog. // -UM.TooltipArea +Item { id: control UM.I18nCatalog { id: catalog; name: "cura"; } - text: tooltip - property alias containerStackId: propertyProvider.containerStackId property alias settingKey: propertyProvider.key property alias settingStoreIndex: propertyProvider.storeIndex - property string tooltip: propertyProvider.properties.description ? propertyProvider.properties.description : "" - property alias labelText: titleLabel.text property alias labelFont: titleLabel.font