mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-12 02:46:00 +02:00
tmp debug
Signed-off-by: dignow <linlong1265@gmail.com>
This commit is contained in:
parent
93a600a0a8
commit
9e0feb0b64
2 changed files with 20 additions and 21 deletions
|
@ -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,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue