Commit d4b8262466beeed9cf4ef21d68d78f342668744e
Fix OS X CI
update_window_lazy() crashes in tests.
Author: xaizek
Author date (UTC): 2025-08-23 08:57
Committer name: xaizek
Committer date (UTC): 2025-08-23 09:59
Parent(s): 3ab1b704853a2a13151fdf4bc2266b6421026446
Signing key: 99DC5E4DB05F6BE2
Tree: 220e031182ad8a21e6dafd0b24a4c1dcd0eb1825
File src/ui/ui.c changed (mode: 100644) (index 3e4baafa5..5113412a2) |
... |
... |
static void |
1223 |
1223 |
update_window_lazy(WINDOW *win) |
update_window_lazy(WINDOW *win) |
1224 |
1224 |
{ |
{ |
1225 |
1225 |
touchwin(win); |
touchwin(win); |
1226 |
|
/* Tell curses that it shouldn't assume that screen isn't messed up in any |
|
1227 |
|
* way. */ |
|
1228 |
|
redrawwin(win); |
|
|
1226 |
|
if(curr_stats.load_stage > 0) |
|
1227 |
|
{ |
|
1228 |
|
/* Tell curses that it shouldn't assume that screen isn't messed up in any |
|
1229 |
|
* way. */ |
|
1230 |
|
redrawwin(win); |
|
1231 |
|
} |
1229 |
1232 |
wnoutrefresh(win); |
wnoutrefresh(win); |
1230 |
1233 |
} |
} |
1231 |
1234 |
|
|