1
0
Fork 0

Fix issue with widget utils - just a single hidden widget would cancel checking others

master
Gordon Williams 2023-05-10 12:05:30 +01:00
parent cccce9318e
commit 6084c2b9ad
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ exports.swipeOn = function(autohide) {
}
for (var w of global.WIDGETS) {
if (w._draw) return; // already hidden
if (w._draw) continue; // already hidden
w._draw = w.draw;
w.draw = function() {
g=og;