mirror of
https://github.com/scratchfoundation/scratch-flash.git
synced 2024-12-04 21:21:06 -05:00
Fixed watcher checkbox when hiding list from context menu
This commit is contained in:
parent
8c0a53054a
commit
dc8b31a751
1 changed files with 4 additions and 1 deletions
|
@ -160,7 +160,10 @@ public class ListWatcher extends Sprite {
|
|||
file.save(s, listName + '.txt');
|
||||
}
|
||||
|
||||
private function hide():void { visible = false }
|
||||
private function hide():void {
|
||||
visible = false;
|
||||
Scratch.app.updatePalette(false);
|
||||
}
|
||||
|
||||
// -----------------------------
|
||||
// Visual feedback for list changes
|
||||
|
|
Loading…
Reference in a new issue