mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 02:41:58 -05:00
Fix #13342: Rename tabChange to onTabChange in WindowDesc interface
This commit is contained in:
parent
5893664785
commit
68543def83
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
0.3.2+ (in development)
|
0.3.2+ (in development)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
- Fix: [#13334] Uninitialised variables in CustomTabDesc
|
- Fix: [#13334] Uninitialised variables in CustomTabDesc
|
||||||
|
- Fix: [#13342] Rename tabChange to onTabChange in WindowDesc interface
|
||||||
|
|
||||||
0.3.2 (2020-11-01)
|
0.3.2 (2020-11-01)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
2
distribution/openrct2.d.ts
vendored
2
distribution/openrct2.d.ts
vendored
|
@ -1869,7 +1869,7 @@ declare global {
|
||||||
|
|
||||||
onClose?: () => void;
|
onClose?: () => void;
|
||||||
onUpdate?: () => void;
|
onUpdate?: () => void;
|
||||||
tabChange?: () => void;
|
onTabChange?: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ImageAnimation {
|
interface ImageAnimation {
|
||||||
|
|
Loading…
Reference in a new issue