no mask check for wol to avoid unexpected bug

This commit is contained in:
rustdesk
2023-06-17 00:17:56 +08:00
parent fe8ab49827
commit 82d6032655
2 changed files with 8 additions and 15 deletions

View File

@@ -1905,7 +1905,7 @@ pub async fn handle_test_delay(t: TestDelay, peer: &mut Stream) {
/// Whether is track pad scrolling.
#[inline]
#[cfg(all(target_os = "macos"))]
#[cfg(all(target_os = "macos", not(feature = "flutter")))]
fn check_scroll_on_mac(mask: i32, x: i32, y: i32) -> bool {
// flutter version we set mask type bit to 4 when track pad scrolling.
if mask & 7 == crate::input::MOUSE_TYPE_TRACKPAD {