mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-08-20 13:31:18 +08:00
tmp debug
Signed-off-by: dignow <linlong1265@gmail.com>
This commit is contained in:
@ -585,8 +585,8 @@ class InputModel {
|
||||
late final dynamic evtValue;
|
||||
if (type == 'pan_update') {
|
||||
evtValue = {
|
||||
'x': '${x.toInt()}',
|
||||
'y': '${y.toInt()}',
|
||||
'x': x.toInt(),
|
||||
'y': y.toInt(),
|
||||
};
|
||||
} else {
|
||||
final isMoveTypes = ['pan_start', 'pan_end'];
|
||||
@ -601,8 +601,8 @@ class InputModel {
|
||||
return;
|
||||
}
|
||||
evtValue = {
|
||||
'x': '${pos.x}',
|
||||
'y': '${pos.y}',
|
||||
'x': pos.x,
|
||||
'y': pos.y,
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user