Showing 1 changed files with 3 additions and 1 deletions
+3 -1
Nasal/knobs.nas
... ...
@@ -131,8 +131,10 @@ var knobsClass = {
131 131
                 elsif (mm == 0 and hh == 0)
132 132
                     ss = 0;
133 133
             }
134
+            val = sprintf('%02i:%02i:%02i', hh, mm, ss);
134 135
             me.device.windows.window[me.device.windows.selected]
135
-                .setText(sprintf('%02i:%02i:%02i', hh, mm, ss));
136
+                .setText(val);
137
+            object.text = val;
136 138
         }
137 139
     },
138 140