From faa4af634afd47f04cafbdc97b23e8b57cbc9c3e Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 4 Jan 2018 09:58:15 +0100 Subject: [PATCH] Show pause text even if there is nothing to pause CL-541 --- resources/qml/MonitorButton.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/qml/MonitorButton.qml b/resources/qml/MonitorButton.qml index bd14cc58fe..0e9728da3d 100644 --- a/resources/qml/MonitorButton.qml +++ b/resources/qml/MonitorButton.qml @@ -277,10 +277,9 @@ Item (["paused", "printing"].indexOf(activePrintJob.state) >= 0) text: { - var result = ""; if (!printerConnected || activePrintJob == null) { - return ""; + return catalog.i18nc("@label:", "Pause"); } if (activePrintJob.state == "paused")