diff options
author | June McEnroe <june@causal.agency> | 2021-01-31 15:33:41 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-31 15:33:41 -0500 |
commit | 32bf43660fabe2478cd3d5e7993e7cc4fbb3e3eb (patch) | |
tree | 28b5ef49a1122c837b788d2f33d636d0b506aec6 /ui.c | |
parent | Actually scroll to first line for "scroll to top" (diff) | |
download | catgirl-32bf43660fabe2478cd3d5e7993e7cc4fbb3e3eb.tar.gz catgirl-32bf43660fabe2478cd3d5e7993e7cc4fbb3e3eb.zip |
Also skip marking swap window
Third time's the charm?
Diffstat (limited to 'ui.c')
-rw-r--r-- | ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c index f44073a..e75e0eb 100644 --- a/ui.c +++ b/ui.c @@ -772,10 +772,10 @@ static void inputUpdate(void) { static void windowShow(uint num) { if (num != windows.show) { windows.swap = windows.show; + mark(windows.ptrs[windows.swap]); } windows.show = num; windows.user = num; - mark(windows.ptrs[windows.swap]); unmark(windows.ptrs[windows.show]); mainUpdate(); inputUpdate(); |