From ae3362f7168ee66bc13d347214ba64c342b5cb07 Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Thu, 19 Aug 2021 12:33:46 +0200 Subject: [PATCH] Fix "Manage printer" button pointing to the print job link Both the "Manage printer" and the "Manage in browser" button were using the `openPrintJobControlPanel()` function, which was wrong. This is now fixed so that the "Manage printer" will use the `openPrinterControlPanel()` function as it should've in the first place. --- plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml index 85bc19b0ab..5a4556f1f7 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml @@ -172,7 +172,7 @@ Item MouseArea { anchors.fill: managePrinterLink - onClicked: OutputDevice.openPrintJobControlPanel() + onClicked: OutputDevice.openPrinterControlPanel() onEntered: { manageQueueText.font.underline = true