aboutsummaryrefslogtreecommitdiff
path: root/js/stage/tool-handle.js
diff options
context:
space:
mode:
authorJon Reid2012-04-10 14:52:23 -0700
committerJon Reid2012-04-10 14:52:23 -0700
commitc19987997758cf47ac9b93a2a767a0e2a9072745 (patch)
treeeb68491c5d04a5cf5ab75bedf2d6bbed3c7a3603 /js/stage/tool-handle.js
parent03a3b32b9b0fd2dc8e4b54bfd5282fd1f8fb6ed6 (diff)
parent422b14fc60be84c116115f2e71e3499e232f3f05 (diff)
downloadninja-c19987997758cf47ac9b93a2a767a0e2a9072745.tar.gz
Merge remote-tracking branch 'ninja-jduran/TimelineUber' into timeline-local
Diffstat (limited to 'js/stage/tool-handle.js')
-rwxr-xr-xjs/stage/tool-handle.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/js/stage/tool-handle.js b/js/stage/tool-handle.js
index f16d8324..d353da47 100755
--- a/js/stage/tool-handle.js
+++ b/js/stage/tool-handle.js
@@ -235,6 +235,8 @@ exports.RotateHandle = Montage.create(ToolHandle, {
235 context.strokeStyle = this._strokeStyle; 235 context.strokeStyle = this._strokeStyle;
236 context.fillStyle = this._fillStyle; 236 context.fillStyle = this._fillStyle;
237 context.lineWidth = this._lineWidth; 237 context.lineWidth = this._lineWidth;
238 context.shadowBlur = 2;
239 context.shadowColor = "rgba(0, 0, 0, 0.8)";
238 240
239 var pointOnElt = base.slice(0); 241 var pointOnElt = base.slice(0);
240// this._origin = viewUtils.localToGlobal(pointOnElt, item); 242// this._origin = viewUtils.localToGlobal(pointOnElt, item);
@@ -400,7 +402,8 @@ exports.RotateHandle = Montage.create(ToolHandle, {
400 var context = this.application.ninja.stage.drawingContext; 402 var context = this.application.ninja.stage.drawingContext;
401 context.save(); 403 context.save();
402 404
403 context.strokeStyle = this._strokeStyle; 405 context.strokeStyle = "rgba(0,0,0,1)";
406 context.lineWidth = 2;
404 context.fillStyle = this._fillStyle; 407 context.fillStyle = this._fillStyle;
405 context.globalAlpha = 0.2; 408 context.globalAlpha = 0.2;
406 409
@@ -574,6 +577,8 @@ exports.TranslateHandle = Montage.create(ToolHandle, {
574 context.strokeStyle = this._strokeStyle; 577 context.strokeStyle = this._strokeStyle;
575 context.fillStyle = this._fillStyle; 578 context.fillStyle = this._fillStyle;
576 context.lineWidth = this._lineWidth; 579 context.lineWidth = this._lineWidth;
580 context.shadowBlur = 2;
581 context.shadowColor = "rgba(0, 0, 0, 0.8)";
577 582
578 var pointOnElt = base.slice(0); 583 var pointOnElt = base.slice(0);
579// this._origin = viewUtils.localToGlobal(pointOnElt, item); 584// this._origin = viewUtils.localToGlobal(pointOnElt, item);