diff options
author | June McEnroe <june@causal.agency> | 2020-02-13 05:10:55 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-13 05:10:55 -0500 |
commit | a6bc2ea7c38814a5fd552826393cb870efdc263b (patch) | |
tree | 36f90312e5f17edc1ff85f47a46d337745654f93 | |
parent | Refactor windows into array and add /move (diff) | |
download | catgirl-a6bc2ea7c38814a5fd552826393cb870efdc263b.tar.gz catgirl-a6bc2ea7c38814a5fd552826393cb870efdc263b.zip |
Set swap correctly when closing a window
I knew I missed something.
Diffstat (limited to '')
-rw-r--r-- | ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c index b1eedaf..2fbb720 100644 --- a/ui.c +++ b/ui.c @@ -797,6 +797,7 @@ static void windowClose(size_t num) { if (windows.swap >= num) windows.swap--; if (windows.show == num) { windowShow(windows.swap); + windows.swap = windows.show; } else if (windows.show > num) { windows.show--; } |