diff options
Diffstat (limited to 'js/tools/bindingTool.js')
-rw-r--r-- | js/tools/bindingTool.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/js/tools/bindingTool.js b/js/tools/bindingTool.js index 2d459a61..6444d2a7 100644 --- a/js/tools/bindingTool.js +++ b/js/tools/bindingTool.js | |||
@@ -44,12 +44,17 @@ exports.BindingTool = Montage.create(ModifierToolBase, { | |||
44 | HandleLeftButtonDown: { | 44 | HandleLeftButtonDown: { |
45 | value: function(event) { | 45 | value: function(event) { |
46 | NJevent("enableStageMove"); | 46 | NJevent("enableStageMove"); |
47 | this.application.ninja.stage.bindingView.handleMousedown(event); | 47 | this.application.ninja.stage.bindingView.validateOverHud(); |
48 | } | 48 | } |
49 | }, | 49 | }, |
50 | 50 | ||
51 | HandleMouseMove: { | 51 | HandleMouseMove: { |
52 | value: function(event) { | 52 | value: function(event) { |
53 | /* | ||
54 | In the mouse over event we need to validate if the mouse over is over a hud. | ||
55 | If it on top of a hud bring that single hud to the top to associate with. | ||
56 | |||
57 | */ | ||
53 | //this.doDraw(event); | 58 | //this.doDraw(event); |
54 | } | 59 | } |
55 | }, | 60 | }, |