From 4a3cf0aa3bc4778821801ec325fb2fd9dbbd038b Mon Sep 17 00:00:00 2001 From: jmoenig Date: Tue, 13 Jan 2015 08:37:33 +0100 Subject: fixed #680 --- gui.js | 11 ++++++++++- history.txt | 5 +++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/gui.js b/gui.js index 521f27e..46d47e5 100644 --- a/gui.js +++ b/gui.js @@ -69,7 +69,7 @@ SpeechBubbleMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2015-January-12'; +modules.gui = '2015-January-13'; // Declarations @@ -3343,6 +3343,15 @@ IDE_Morph.prototype.toggleAppMode = function (appMode) { }).forEach(function (s) { s.adjustScrollBars(); }); + // prevent rotation and draggability controls from + // showing for the stage + if (this.currentSprite === this.stage) { + this.spriteBar.children.forEach(function (child) { + if (child instanceof PushButtonMorph) { + child.hide(); + } + }); + } } this.setExtent(this.world().extent()); // resume trackChanges }; diff --git a/history.txt b/history.txt index 3ca41f8..b621772 100755 --- a/history.txt +++ b/history.txt @@ -2413,3 +2413,8 @@ ______ * Objects: Disable clones from being edited via their context menus or double-click * Italian translation update, thanks, Alberto Firpo! * GUI: add additional yields to nextSteps() (work around a bug in Chrome) + +150113 +------ +* BYOB: fixed #702 +* GUI: fixed #680 -- cgit v1.3.1