mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 17:04:58 +01:00
fix bug
This commit is contained in:
parent
342b74fb50
commit
5ae384f66e
1 changed files with 1 additions and 1 deletions
|
|
@ -215,7 +215,7 @@ TCAD.TWO.Viewer.prototype.deselectAll = function() {
|
|||
var obj = this.selected[i];
|
||||
obj.marked = false;
|
||||
}
|
||||
while(this.selected > 0) this.selected.pop();
|
||||
while(this.selected.length > 0) this.selected.pop();
|
||||
};
|
||||
|
||||
TCAD.TWO.Layer = function(name, style) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue