clear bug

This commit is contained in:
open-trade 2021-08-22 07:50:12 +08:00
parent 86c7013e53
commit 0316c7bcd8

View File

@ -295,11 +295,11 @@ class CanvasModel with ChangeNotifier {
notifyListeners(); notifyListeners();
} }
void clear() { void clear([bool notify=false]) {
_x = 0; _x = 0;
_y = 0; _y = 0;
_scale = 1.0; _scale = 1.0;
notifyListeners(); if (notify) notifyListeners();
} }
} }
@ -357,7 +357,7 @@ class CursorModel with ChangeNotifier {
_x = _displayOriginX; _x = _displayOriginX;
_y = _displayOriginY; _y = _displayOriginY;
FFI.moveMouse(_x, _y); FFI.moveMouse(_x, _y);
FFI.canvasModel.clear(); FFI.canvasModel.clear(true);
notifyListeners(); notifyListeners();
} }