From 0a9a79b5867c48b60b2035ca414f9b7f9dc9efbe Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sat, 8 Mar 2025 09:50:52 -0600 Subject: [PATCH] watch cursor when scenario picker is building headers --- src/game/boe.dlgutil.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/game/boe.dlgutil.cpp b/src/game/boe.dlgutil.cpp index 2b060157..f959c27f 100644 --- a/src/game/boe.dlgutil.cpp +++ b/src/game/boe.dlgutil.cpp @@ -1792,7 +1792,11 @@ public: }; scen_header_type pick_a_scen() { - return cChooseScenario().run(); + // build_scen_headers() can be slow. + set_cursor(watch_curs); + cChooseScenario dlg; + restore_cursor(); + return dlg.run(); } extern fs::path saveDir;