summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2014-07-11 12:34:37 +0200
committerjmoenig <jens@moenig.org>2014-07-11 12:34:37 +0200
commit900c7e068b69d9a4224f99934d9b92a0593a4a95 (patch)
tree83cc584de0f9b889ca73caa92835c1e33872f610
parent05c74826888fb70247db5d5f37b6a8e4162f5ca4 (diff)
downloadsnap-yow-900c7e068b69d9a4224f99934d9b92a0593a4a95.tar.gz
snap-yow-900c7e068b69d9a4224f99934d9b92a0593a4a95.zip
make the color of the %pause symbol more yellowish
-rw-r--r--blocks.js4
-rwxr-xr-xhistory.txt1
2 files changed, 3 insertions, 2 deletions
diff --git a/blocks.js b/blocks.js
index f02001b..61d8b01 100644
--- a/blocks.js
+++ b/blocks.js
@@ -155,7 +155,7 @@ DialogBoxMorph, BlockInputFragmentMorph, PrototypeHatBlockMorph, Costume*/
// Global stuff ////////////////////////////////////////////////////////
-modules.blocks = '2014-July-08';
+modules.blocks = '2014-July-11';
var SyntaxElementMorph;
@@ -1271,7 +1271,7 @@ SyntaxElementMorph.prototype.labelPart = function (spec) {
case '%pause':
part = new SymbolMorph('pause');
part.size = this.fontSize;
- part.color = new Color(160, 80, 0);
+ part.color = new Color(255, 220, 0);
part.isProtectedLabel = true; // doesn't participate in zebraing
part.shadowColor = this.color.darker(this.labelContrast);
part.shadowOffset = MorphicPreferences.isFlat ?
diff --git a/history.txt b/history.txt
index f5ac907..15fabfb 100755
--- a/history.txt
+++ b/history.txt
@@ -2192,3 +2192,4 @@ ______
------
* Morphic: keyboard shortcut ctrl/cmd-shift-a for ‘@‘
* Morphic: allow directly editing properties in inspector widgets
+* Blocks: change the color of the %pause symbol to be more yellowish