1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-25 07:44:38 +01:00

[Plugin] Invalidate window after changing its colours

This commit is contained in:
Aaron van Geffen
2024-10-26 23:30:17 +02:00
committed by GitHub
parent 1c61c24ec2
commit 5931996edc
2 changed files with 2 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
- Fix: [#23023] Large scenery clearance height interpreted as negative when greater than 127.
- Fix: [#23044] "remove_unused_objects" command causes blank peep names.
- Fix: [#23048] Map generator allows map sizes out of range through text input.
- Fix: [#23058] [Plugin] Changing window colours doesnt trigger the window to be fully redrawn.
0.4.15 (2024-10-06)
------------------------------------------------------------------------

View File

@@ -262,6 +262,7 @@ namespace OpenRCT2::Scripting
}
w->colours[i] = c;
}
w->Invalidate();
}
}