diff options
| author | Schark <jordan@schark.online> | 2026-03-17 00:37:23 -0400 |
|---|---|---|
| committer | Schark <jordan@schark.online> | 2026-03-17 00:37:23 -0400 |
| commit | 4262bf19f9234351f7879401ae325a8e144a0d40 (patch) | |
| tree | 9f275cc1188717d5c424ff0ea1c6ddd0f9ed6477 | |
| parent | c62c150efd216a75d5dd6e67d016da5cd3a0ca4c (diff) | |
| download | cs2pov-4262bf19f9234351f7879401ae325a8e144a0d40.tar.gz cs2pov-4262bf19f9234351f7879401ae325a8e144a0d40.zip | |
Fix Shift+F2 swallowing
| -rw-r--r-- | cs2pov/cli.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cs2pov/cli.py b/cs2pov/cli.py index 6463489..c3dbf38 100644 --- a/cs2pov/cli.py +++ b/cs2pov/cli.py @@ -305,6 +305,7 @@ def record_demo( send_console_command(f"demo_gototick {first_tick}", display_str, window_id) time.sleep(2.0) # Wait for seek to complete send_key("F5", display_str, window_id) # Re-lock spectator + time.sleep(1.0) # Let F5 settle before sending Shift+F2 # Send Shift+F2 after seek (gototick resets UI state, swallowing earlier sends) if send_key("shift+F2", display_str, window_id): if verbose: |
