1
0
Fork 0

don't pause the update loop

This commit is contained in:
mfranz 2007-05-07 16:24:16 +00:00
parent e7ebfba42c
commit 065bd859d6

View file

@ -152,7 +152,7 @@
if (type == "BOOL") {
value = node.getBoolValue() ? "true" : "false";
title.setValue("Hint: Ctrl-click toggles bool values");
settimer(func {title.setValue(dir) }, 5);
settimer(func {title.setValue(dir) }, 5, 1);
} elsif (type == "STRING") {
value = node.getValue();
} elsif (type == "NONE") {
@ -192,7 +192,7 @@
list.setValue(dir);
update("property-list");
if (update_interval) {
settimer(auto_update, update_interval);
settimer(auto_update, update_interval, 1);
}
}