mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-25 13:19:04 +08:00
clear bug
This commit is contained in:
parent
86c7013e53
commit
0316c7bcd8
@ -295,11 +295,11 @@ class CanvasModel with ChangeNotifier {
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
void clear() {
|
||||
void clear([bool notify=false]) {
|
||||
_x = 0;
|
||||
_y = 0;
|
||||
_scale = 1.0;
|
||||
notifyListeners();
|
||||
if (notify) notifyListeners();
|
||||
}
|
||||
}
|
||||
|
||||
@ -357,7 +357,7 @@ class CursorModel with ChangeNotifier {
|
||||
_x = _displayOriginX;
|
||||
_y = _displayOriginY;
|
||||
FFI.moveMouse(_x, _y);
|
||||
FFI.canvasModel.clear();
|
||||
FFI.canvasModel.clear(true);
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user