diff options
| author | jmoenig <jens@moenig.org> | 2014-10-06 10:34:56 +0200 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2014-10-06 10:34:56 +0200 |
| commit | 2ae675132a52b8fdb3bd52e80db858500de9f265 (patch) | |
| tree | 521c9eb01ecadc7b2daa73651dfb5aa5b6eb5850 | |
| parent | 45e1f3193b6a0593f084df28ee3d8f194bcea448 (diff) | |
| download | snap-yow-2ae675132a52b8fdb3bd52e80db858500de9f265.tar.gz snap-yow-2ae675132a52b8fdb3bd52e80db858500de9f265.zip | |
fixed #604. Thanks, @Gubolin!
| -rw-r--r-- | gui.js | 3 | ||||
| -rwxr-xr-x | history.txt | 4 | ||||
| -rw-r--r-- | objects.js | 10 |
3 files changed, 13 insertions, 4 deletions
@@ -69,7 +69,7 @@ SpeechBubbleMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2014-October-02'; +modules.gui = '2014-October-06'; // Declarations @@ -3354,6 +3354,7 @@ IDE_Morph.prototype.toggleStageSize = function (isSmall) { myself.stageRatio += (1 - myself.stageRatio) / 2; myself.setExtent(world.extent()); if (myself.stageRatio > 0.9) { + myself.stageRatio = 1; myself.isSmallStage = false; myself.setExtent(world.extent()); myself.controlBar.stageSizeButton.refresh(); diff --git a/history.txt b/history.txt index 00dc07e..5999536 100755 --- a/history.txt +++ b/history.txt @@ -2301,3 +2301,7 @@ ______ 141002 ------ * GUI: New feature - minimal stage mode (shift-click on small-stage button) + +141006 +------ +* GUI, Objects: fixed #604. Thanks, @Gubolin! @@ -125,7 +125,7 @@ PrototypeHatBlockMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.objects = '2014-October-01'; +modules.objects = '2014-October-06'; var SpriteMorph; var StageMorph; @@ -4378,8 +4378,12 @@ StageMorph.prototype.drawOn = function (aCanvas, aRect) { ); // pen trails - ws = w / this.scale; - hs = h / this.scale; + ws = Math.floor( + Math.min(w / this.scale, this.image.width * this.scale) + ); + hs = Math.floor( + Math.min(h / this.scale, this.image.height * this.scale) + ); context.save(); context.scale(this.scale, this.scale); context.drawImage( |
