mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-06-26 21:10:25 -04:00
Fix issue in Project#deselectAll().
This commit is contained in:
parent
23b51915eb
commit
9d708f2690
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ var Project = this.Project = PaperScopeItem.extend(/** @lends Project# */{
|
||||||
*/
|
*/
|
||||||
deselectAll: function() {
|
deselectAll: function() {
|
||||||
for (var i in this._selectedItems)
|
for (var i in this._selectedItems)
|
||||||
this._selectedItems[i].item.setSelected(false);
|
this._selectedItems[i].setSelected(false);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue