diff options
| -rwxr-xr-x | history.txt | 1 | ||||
| -rw-r--r-- | objects.js | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/history.txt b/history.txt index 26d93d4..d3b210b 100755 --- a/history.txt +++ b/history.txt @@ -1938,3 +1938,4 @@ ______ ------ * Threads: Type-check the SPLIT block's input before eval'ing it * Objects: Prevent watcher cells from growing wider as their contents becomes taller +* Objects: Keep watchers onstage when hiding/showing them, fixes #195 @@ -3056,6 +3056,7 @@ SpriteMorph.prototype.toggleVariableWatcher = function (varName, isGlobal) { } else { watcher.show(); watcher.fixLayout(); // re-hide hidden parts + watcher.keepWithin(stage); } return; } @@ -3074,6 +3075,7 @@ SpriteMorph.prototype.toggleVariableWatcher = function (varName, isGlobal) { } stage.add(watcher); watcher.fixLayout(); + watcher.keepWithin(stage); }; SpriteMorph.prototype.showingVariableWatcher = function (varName) { @@ -3115,6 +3117,7 @@ SpriteMorph.prototype.toggleWatcher = function (selector, label, color) { } else { watcher.show(); watcher.fixLayout(); // re-hide hidden parts + watcher.keepWithin(stage); } return; } @@ -3133,6 +3136,7 @@ SpriteMorph.prototype.toggleWatcher = function (selector, label, color) { } stage.add(watcher); watcher.fixLayout(); + watcher.keepWithin(stage); }; SpriteMorph.prototype.showingWatcher = function (selector) { |
