From 2759035ab2394a2304239b8f496d13ecda981afb Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Tue, 7 Apr 2015 12:24:45 +0200 Subject: [PATCH] Remove obsolete logging and re-enable disable functionality --- qml/SaveButton.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qml/SaveButton.qml b/qml/SaveButton.qml index ae4c701d6b..5216886e90 100644 --- a/qml/SaveButton.qml +++ b/qml/SaveButton.qml @@ -13,7 +13,7 @@ Button { property real progress: UM.Backend.progress; Behavior on progress { NumberAnimation { duration: 250; } } -// enabled: progress >= 0.95; + enabled: progress >= 0.95; property string currentDevice: 'local_file' property bool defaultOverride: false; @@ -29,7 +29,6 @@ Button { base.defaultAmbiguous = false; var device = null; for(var i in Printer.outputDevices) { - console.log(i); if(device == null) { device = i; } else if(Printer.outputDevices[i].priority > Printer.outputDevices[device].priority) {