aboutsummaryrefslogtreecommitdiff
path: root/js/stage/stage.reel/stage.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/stage/stage.reel/stage.js')
-rwxr-xr-xjs/stage/stage.reel/stage.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/js/stage/stage.reel/stage.js b/js/stage/stage.reel/stage.js
index e00d2b54..a6e7c24f 100755
--- a/js/stage/stage.reel/stage.js
+++ b/js/stage/stage.reel/stage.js
@@ -171,10 +171,8 @@ exports.Stage = Montage.create(Component, {
171 return; 171 return;
172 } 172 }
173 173
174 if(!value) { 174 if(!this._currentDocument) {
175 // Show the rulers
176 this.showRulers(); 175 this.showRulers();
177 // Show the canvas
178 this.hideCanvas(false); 176 this.hideCanvas(false);
179 } 177 }
180 178
@@ -186,7 +184,7 @@ exports.Stage = Montage.create(Component, {
186 this.initWithDocument(false); 184 this.initWithDocument(false);
187 } 185 }
188 186
189 if(!this._currentDocument) { 187 if(!value) {
190 this.hideRulers(); 188 this.hideRulers();
191 this.hideCanvas(true); 189 this.hideCanvas(true);
192 } 190 }