|
@@ -51,6 +51,8 @@ export class Gizemo extends Events {
|
|
|
mouse: ""
|
|
|
}, this.history)
|
|
|
|
|
|
+ lastSelChanged = false;
|
|
|
+
|
|
|
getCompObj: FnGetCompObj;
|
|
|
|
|
|
constructor(getCompObj: FnGetCompObj) {
|
|
@@ -175,16 +177,28 @@ export class Gizemo extends Events {
|
|
|
}
|
|
|
|
|
|
selectObjs(ids: string[]) {
|
|
|
+ let noChange = false;
|
|
|
if (this.selected.length == ids.length ) {
|
|
|
- if (ids.length == 0) return;
|
|
|
- if (ids.length == 1) {
|
|
|
- if (ids[0] == this.selected[0].comp.id) return;
|
|
|
+ if (ids.length == 0) {
|
|
|
+ noChange = true;
|
|
|
+ } else if (ids.length == 1) {
|
|
|
+ if (ids[0] == this.selected[0].comp.id) {
|
|
|
+ noChange = true;
|
|
|
+ }
|
|
|
} else {
|
|
|
const id1 = ids.sort().join("");
|
|
|
const id2 = this.selected.map(item=>item.comp.id).sort().join("");
|
|
|
- if (id1 == id2) return;
|
|
|
+ if (id1 == id2) {
|
|
|
+ noChange = true;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+ this.lastSelChanged = !noChange;
|
|
|
+ console.log("changing....", this.lastSelChanged);
|
|
|
+ if (noChange) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
let n = ids.length;
|
|
|
const selected = ids;
|
|
|
let w = 0, h = 0, x = 0, y = 0, sx = 1 , sy = 1, r = 0, px=0, py=0;
|