From 744709b15b0b7ac7b13b5a2a3f69140a049479ba Mon Sep 17 00:00:00 2001 From: jdescottes Date: Wed, 2 Sep 2015 01:16:09 +0200 Subject: [PATCH] Issue #256 : update Move tool tooltip --- src/js/tools/drawing/Move.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/js/tools/drawing/Move.js b/src/js/tools/drawing/Move.js index 8e945f09..f63655fc 100644 --- a/src/js/tools/drawing/Move.js +++ b/src/js/tools/drawing/Move.js @@ -10,6 +10,12 @@ this.toolId = ns.Move.TOOL_ID; this.helpText = 'Move tool'; + this.tooltipDescriptors = [ + {key : 'ctrl', description : 'Apply to all layers'}, + {key : 'shift', description : 'Apply to all frames'}, + {key : 'alt', description : 'Warp canvas borders'} + ]; + // Stroke's first point coordinates (set in applyToolAt) this.startCol = null; this.startRow = null;