diff options
Diffstat (limited to 'js/tools')
-rw-r--r-- | js/tools/BrushTool.js | 2 | ||||
-rwxr-xr-x | js/tools/SelectionTool.js | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/js/tools/BrushTool.js b/js/tools/BrushTool.js index 6cd6858c..94958fd6 100644 --- a/js/tools/BrushTool.js +++ b/js/tools/BrushTool.js | |||
@@ -342,6 +342,8 @@ exports.BrushTool = Montage.create(ShapeTool, { | |||
342 | // TODO - update the shape's info only. shapeModel will likely need an array of shapes. | 342 | // TODO - update the shape's info only. shapeModel will likely need an array of shapes. |
343 | } | 343 | } |
344 | 344 | ||
345 | NJevent("elementAdded", newCanvas); | ||
346 | |||
345 | //if(newCanvas.elementModel.isShape) | 347 | //if(newCanvas.elementModel.isShape) |
346 | if (true) | 348 | if (true) |
347 | { | 349 | { |
diff --git a/js/tools/SelectionTool.js b/js/tools/SelectionTool.js index 7033ee3d..414f9d11 100755 --- a/js/tools/SelectionTool.js +++ b/js/tools/SelectionTool.js | |||
@@ -221,8 +221,10 @@ var SelectionTool = exports.SelectionTool = Montage.create(ModifierToolBase, { | |||
221 | HandleDoubleClick: { | 221 | HandleDoubleClick: { |
222 | value: function(event) { | 222 | value: function(event) { |
223 | if(this.application.ninja.selectedElements.length > 0) { | 223 | if(this.application.ninja.selectedElements.length > 0) { |
224 | // this.application.ninja.currentDocument.breadCrumbClick = true; | ||
224 | this.application.ninja.currentSelectedContainer = this.application.ninja.selectedElements[0]; | 225 | this.application.ninja.currentSelectedContainer = this.application.ninja.selectedElements[0]; |
225 | } else { | 226 | } else { |
227 | // this.application.ninja.currentDocument.breadCrumbClick = true; | ||
226 | this.application.ninja.currentSelectedContainer = this.application.ninja.currentDocument.documentRoot; | 228 | this.application.ninja.currentSelectedContainer = this.application.ninja.currentDocument.documentRoot; |
227 | } | 229 | } |
228 | } | 230 | } |