diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-04-05 00:19:57 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-04-05 00:19:57 +0200 |
commit | 7be4e6b514405e770e2a47cb80b1684c0210d858 (patch) | |
tree | 395a547ae10b6f592e3dac6e7443ee09f3a80dbc /src/Overlay.cpp | |
parent | 0a3acd4a63277cbb95dfc9a983e9b8ed5883ab47 (diff) |
Only update cursor tracker every 100ms, fix cursor hotspot offset for x111.3.2
Diffstat (limited to 'src/Overlay.cpp')
-rw-r--r-- | src/Overlay.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/Overlay.cpp b/src/Overlay.cpp index 3ae81a5..3d99e46 100644 --- a/src/Overlay.cpp +++ b/src/Overlay.cpp @@ -49,6 +49,7 @@ namespace gsr { static const double replay_saving_notification_timeout_seconds = 0.5; static const double notification_timeout_seconds = 2.0; static const double notification_error_timeout_seconds = 5.0; + static const double cursor_tracker_update_timeout_sec = 0.1; static mgl::Texture texture_from_ximage(XImage *img) { uint8_t *texture_data = (uint8_t*)malloc(img->width * img->height * 3); @@ -634,8 +635,11 @@ namespace gsr { if(global_hotkeys_js) global_hotkeys_js->poll_events(); - if(cursor_tracker) - cursor_tracker->update(); + if(cursor_tracker_update_clock.get_elapsed_time_seconds() >= cursor_tracker_update_timeout_sec) { + cursor_tracker_update_clock.restart(); + if(cursor_tracker) + cursor_tracker->update(); + } handle_keyboard_mapping_event(); region_selector.poll_events(); @@ -958,7 +962,7 @@ namespace gsr { // The real cursor doesn't move when all devices are grabbed, so we create our own cursor and diplay that while grabbed cursor_hotspot = {0, 0}; xi_setup_fake_cursor(); - if(cursor_info) { + if(cursor_info && gsr_info.system_info.display_server == DisplayServer::WAYLAND) { win->cursor_position.x += cursor_hotspot.x; win->cursor_position.y += cursor_hotspot.y; } |