Capture mouse on start for --hid-mouse

If relative mode is enabled, capture the mouse immediately.
This commit is contained in:
Romain Vimont 2022-01-23 21:30:30 +01:00
parent 4bf9c057fe
commit 063d103dd6

View file

@ -707,6 +707,11 @@ sc_screen_update_frame(struct sc_screen *screen) {
screen->has_frame = true; screen->has_frame = true;
// this is the very first frame, show the window // this is the very first frame, show the window
sc_screen_show_initial_window(screen); sc_screen_show_initial_window(screen);
if (sc_screen_is_relative_mode(screen)) {
// Capture mouse on start
sc_screen_capture_mouse(screen, true);
}
} }
sc_screen_render(screen, false); sc_screen_render(screen, false);