Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantinos Karmas <konskarm@gmail.com>2021-08-19 13:33:46 +0300
committerKonstantinos Karmas <konskarm@gmail.com>2021-08-19 13:33:46 +0300
commitae3362f7168ee66bc13d347214ba64c342b5cb07 (patch)
tree915216bf55118610af644d64e254f16770e20b1c
parent668624e13ddd41afc9e59f3e7c03047f7688dbd7 (diff)
Fix "Manage printer" button pointing to the print job link4.11-beta
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.
-rw-r--r--plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml2
1 files changed, 1 insertions, 1 deletions
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