differentiate the new region loading screen in the focus string

develop
Myk Taylor 2023-09-10 16:32:52 -07:00
parent 45f58aa512
commit e325f3b6d9
No known key found for this signature in database
2 changed files with 4 additions and 1 deletions

@ -59,6 +59,7 @@ Template for new versions:
## Fixes
- `buildingplan`: make the construction dimensions readout visible again
- `seedwatch`: fix a crash when reading data saved by very very old versions of the plugin
- `gui/mod-manager`: don't continue to display overlay after the raws loading progress bar appears
## Misc Improvements
- `sort`: sort by need for training on squad assignment screen

@ -161,7 +161,9 @@ DEFINE_GET_FOCUS_STRING_HANDLER(title)
DEFINE_GET_FOCUS_STRING_HANDLER(new_region)
{
if (screen->doing_mods)
if (screen->raw_load)
focusStrings.push_back(baseFocus + "/Loading");
else if (screen->doing_mods)
focusStrings.push_back(baseFocus + "/Mods");
else if (screen->doing_simple_params)
focusStrings.push_back(baseFocus + "/Basic");