Disable TGUI window pooling to prevent the loading mouse cursor thingy (#30790)

This commit is contained in:
DamianX
2021-09-20 13:32:10 +02:00
committed by GitHub
parent c5e393163f
commit f6080e8cbf

View File

@@ -8,7 +8,11 @@
#define UI_CLOSE -1
/// Maximum number of windows that can be suspended/reused
#define TGUI_WINDOW_SOFT_LIMIT 5
/// Normally 5.
/// There's an issue that causes the cursor to always show the loading animation
/// if tgui windows are open (pooled hidden windows count as well).
#define TGUI_WINDOW_SOFT_LIMIT 0
/// Maximum number of open windows
#define TGUI_WINDOW_HARD_LIMIT 9