Browse Source

版本及特殊item不出选择框

haojianlong 4 years ago
parent
commit
5cbc7cfeb6

+ 2 - 2
package.json

@@ -9,9 +9,9 @@
   },
   "dependencies": {
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.11",
+    "@persagy-web/big": "2.2.12",
     "@persagy-web/draw": "2.2.8",
-    "@persagy-web/graph": "2.2.15",
+    "@persagy-web/graph": "2.2.16",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",
     "core-js": "^3.6.5",

+ 1 - 0
src/components/editClass/edit/items/SArrowEdit.ts

@@ -113,6 +113,7 @@ export class SArrowEdit extends SGraphEdit {
    */
   constructor(parent: SGraphItem | null, l?: SPoint | SPoint[]) {
     super(parent);
+    this.showSelect = false;
     if (l) {
       if (l instanceof SPoint) {
         this.line.push(l);

+ 1 - 0
src/components/editClass/edit/items/SLineEdit.ts

@@ -182,6 +182,7 @@ export class SLineEdit extends SGraphEdit {
      * */
     constructor(parent: SGraphItem | null, l?: SPoint | SPoint[]) {
         super(parent);
+        this.showSelect = false;
         if (l) {
             if (l instanceof SPoint) {
                 this.line.push(l);

+ 1 - 0
src/components/editClass/edit/items/STextEdit.ts

@@ -196,6 +196,7 @@ export class STextEdit extends SGraphEdit {
      */
     constructor(parent: SGraphItem | null, str: string = "") {
         super(parent);
+        this.showSelect = false;
         this._text = str;
         this._font = new SFont("sans-serif", 12);
         this.height = 12;