Skip to content

Commit

Permalink
Fix "Manage printer" button pointing to the print job link
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
konskarm committed Aug 19, 2021
1 parent 668624e commit ae3362f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Item
MouseArea
{
anchors.fill: managePrinterLink
onClicked: OutputDevice.openPrintJobControlPanel()
onClicked: OutputDevice.openPrinterControlPanel()
onEntered:
{
manageQueueText.font.underline = true
Expand Down

0 comments on commit ae3362f

Please sign in to comment.