mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-23 00:49:04 +00:00
clear bug
This commit is contained in:
parent
86c7013e53
commit
0316c7bcd8
1 changed files with 3 additions and 3 deletions
|
|
@ -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 a new issue