diff options
| author | jmoenig <jens@moenig.org> | 2013-11-04 15:12:21 +0100 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2013-11-04 15:12:21 +0100 |
| commit | c95c1a223def1cc92c3df0b69ac0d2c5789a9f00 (patch) | |
| tree | 8204f23152c5843b6c34c94b9a5ccf46f38b3bd0 | |
| parent | 405c36805b759baa5e20b6fb092e2b54411ed443 (diff) | |
| download | snap-c95c1a223def1cc92c3df0b69ac0d2c5789a9f00.tar.gz snap-c95c1a223def1cc92c3df0b69ac0d2c5789a9f00.zip | |
only show symbol menu for label fragments
in InputSlotDialog
| -rw-r--r-- | byob.js | 6 | ||||
| -rwxr-xr-x | history.txt | 1 |
2 files changed, 5 insertions, 2 deletions
@@ -106,7 +106,7 @@ SymbolMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.byob = '2013-October-25'; +modules.byob = '2013-November-04'; // Declarations @@ -2490,7 +2490,9 @@ InputSlotDialogMorph.prototype.open = function ( var txt = new InputFieldMorph(defaultString), oldFlag = Morph.prototype.trackChanges; - txt.choices = this.symbolMenu; + if (!this.fragment.type) { + txt.choices = this.symbolMenu; + } Morph.prototype.trackChanges = false; this.isExpanded = this.isLaunchingExpanded; txt.setWidth(250); diff --git a/history.txt b/history.txt index 73ee3ff..99e3be2 100755 --- a/history.txt +++ b/history.txt @@ -1980,3 +1980,4 @@ ______ 131104 ——— * GUI: filter quotation marks from project names (for backend index) +* BYOB: only show symbol menu for label fragments |
