diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 2d388ce78c..b73837f1cc 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -117,6 +117,7 @@ class CuraApplication(QtApplication): "id": "local_file", "function": self._writeToLocalFile, "description": self._i18n_catalog.i18nc("Save button tooltip", "Save to Disk"), + "shortDescription": "Save to Disk", "icon": "save", "priority": 0 }) @@ -442,6 +443,7 @@ class CuraApplication(QtApplication): "id": drive, "function": self._writeToSD, "description": self._i18n_catalog.i18nc("Save button tooltip. {0} is sd card name", "Save to SD Card {0}").format(drive), + "shortDescription": "Save to SD Card", "icon": "save_sd", "priority": 1 }) diff --git a/plugins/USBPrinting/USBPrinterManager.py b/plugins/USBPrinting/USBPrinterManager.py index 42081b184b..f52a0c45ac 100644 --- a/plugins/USBPrinting/USBPrinterManager.py +++ b/plugins/USBPrinting/USBPrinterManager.py @@ -224,7 +224,8 @@ class USBPrinterManager(QObject, SignalEmitter, Extension): Application.getInstance().addOutputDevice(serial_port, { "id": serial_port, "function": self.spawnControlInterface, - "description": "Write to USB {0}".format(serial_port), + "description": "Print through USB {0}".format(serial_port), + "shortDescription": "Print through USB", "icon": "print_usb", "priority": 1 }) diff --git a/resources/qml/SaveButton.qml b/resources/qml/SaveButton.qml index a5f9c1927d..4708995308 100644 --- a/resources/qml/SaveButton.qml +++ b/resources/qml/SaveButton.qml @@ -147,7 +147,7 @@ Rectangle { anchors.horizontalCenter: parent.horizontalCenter color: UM.Theme.colors.save_button_safe_to_text; font: UM.Theme.fonts.sidebar_save_to; - text: Printer.outputDevices[base.currentDevice].description; + text: Printer.outputDevices[base.currentDevice].shortDescription; } } }