mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-14 16:41:29 +03:00
fix: lte should be lt like in linux.rs (#14344)
This commit is contained in:
@@ -107,9 +107,9 @@ pub fn get_focused_display(displays: Vec<DisplayInfo>) -> Option<usize> {
|
|||||||
let center_x = rect.left + (rect.right - rect.left) / 2;
|
let center_x = rect.left + (rect.right - rect.left) / 2;
|
||||||
let center_y = rect.top + (rect.bottom - rect.top) / 2;
|
let center_y = rect.top + (rect.bottom - rect.top) / 2;
|
||||||
center_x >= display.x
|
center_x >= display.x
|
||||||
&& center_x <= display.x + display.width
|
&& center_x < display.x + display.width
|
||||||
&& center_y >= display.y
|
&& center_y >= display.y
|
||||||
&& center_y <= display.y + display.height
|
&& center_y < display.y + display.height
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user