style(windows): satisfy rustfmt on the uninstall() teardown comments

rustfmt 1.9.0 aligns standalone // lines out to the column of a preceding
trailing comment, so the two-line fullscreen note placed right after
`set_captured(...); // ...` failed `cargo fmt --check`. Make the first note a
leading comment so no standalone comment follows a trailing one.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-08 11:24:42 +02:00
co-authored by Claude Opus 4.8
parent 8a4b0c7bae
commit b12c7d3deb
+2 -1
View File
@@ -179,7 +179,8 @@ pub fn uninstall() {
}
}
if let Some(mut st) = STATE.lock().unwrap().take() {
set_captured(&mut st, false); // hand the cursor back + flush held state
// Hand the cursor back + flush held state.
set_captured(&mut st, false);
// Fullscreen is a streaming-only mode: if F11 put us there, drop back to a normal window
// so the GUI (the host list) is never left borderless-fullscreen after the stream ends.
exit_fullscreen(HWND(st.hwnd as *mut _));