Преглед изворни кода

修正组合测量项子项切换异常

gavin.chen пре 8 месеци
родитељ
комит
a34c90ff7c

+ 0 - 2
lib/process/items/item.dart

@@ -193,9 +193,7 @@ abstract class MeasureItem<T extends MeasureItemFeature> extends IMeasureItem {
       calculator?.finishOnce();
     }
     feature = null;
-    print("当前 MeasureItem ${this.hashCode} 状态为 ${state}  状态设置为 finished");
     state = ItemStates.finished;
-    print("当前 MeasureItem ${this.hashCode} 状态为 ${state}");
   }
 
   @protected

+ 0 - 1
lib/process/primitives/urm_measure/urm_rect_measure.dart

@@ -90,7 +90,6 @@ class URMRectMeasure extends MeasureItem<URMRectFeature> {
 
   @override
   bool onExecuteMouse(PointInfo args) {
-    print("当前 MeasureItem ${this.hashCode} 状态为 ${state}");
     if (waitingResult) return false;
     if (state == ItemStates.running && feature == null) {
       state = ItemStates.waiting;