1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 23:34:37 +01:00

Merge pull request #24488 from mixiate/invalidate-screen-on-object-reload

Invalidate screen on reload from object selection window
This commit is contained in:
Matt
2025-05-24 14:27:24 +03:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -30,6 +30,7 @@
- Fix: [#24447] Shortcut list is not refreshed when changing language.
- Fix: [#24448] Shortcuts involving the Caps Lock key are wrongly localised to NumPad Dot.
- Fix: [#24464] Window and viewport visibility is not calculated correctly causing minor performance issues.
- Fix: [#24488] Objects are not always redrawn immediately when they are reloaded from the Object Selection window.
0.4.22 (2025-05-04)
------------------------------------------------------------------------

View File

@@ -478,6 +478,7 @@ namespace OpenRCT2::Ui::Windows
{
objectManager.UnloadObjects({ descriptor });
objectManager.LoadObject(descriptor, entryIndex);
GfxInvalidateScreen();
}
}
break;