You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Haxe 4.3.6, Lime 8.2.2, happens on both Windows native and Hashlink
To reproduce:
Create a sample project with the following window properties in Project.xml:
<window borderless="true" resizable="true"/>
After the window is created, try tracing some of the window parameters. The output will not match the values we've set:
trace(window.borderless); // false, even though we've set this to true in the Project.xml
trace(window.resizable); // false, even though we've set this to true in the Project.xml
trace(window.visible); // false, even though this is true by default and the window is visible
This might be true for other parameters as well, these are just the ones I've tested. Seems like only a few private variables for the getters are set upon window creation, while the others aren't and keep their default value of false:
Haxe 4.3.6, Lime 8.2.2, happens on both Windows native and Hashlink
To reproduce:
<window borderless="true" resizable="true"/>
This might be true for other parameters as well, these are just the ones I've tested. Seems like only a few private variables for the getters are set upon window creation, while the others aren't and keep their default value of
false
:lime/src/lime/ui/Window.hx
Lines 167 to 174 in a9f72d6
The text was updated successfully, but these errors were encountered: