|
@@ -40,7 +40,9 @@ class URMApplication extends Application {
|
|
|
final y = offset.dy / height;
|
|
|
Rect zoomArea = urmDataProcessor.measureAreaInFullVisual;
|
|
|
Offset percentOffset = Offset(x, y);
|
|
|
- percentOffset = pointPctOutRect(zoomArea, percentOffset);
|
|
|
+ if (!isAnnotationWorking) {
|
|
|
+ percentOffset = pointPctOutRect(zoomArea, percentOffset);
|
|
|
+ }
|
|
|
final info = PointInfo.fromOffset(percentOffset, type);
|
|
|
info.hostVisualArea = currentVisualArea; // 未切换区域则沿用当前区域
|
|
|
|