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
I discovered a locale related problem when ImGui load the GUI configuration from the disk. I lose my windows positions and size everytime I start the app.
The problem is that ImGui parse the gui.ini file with the function sscanf, which in my case interpret the commas as numeric dots.
Hi,
I discovered a locale related problem when ImGui load the GUI configuration from the disk. I lose my windows positions and size everytime I start the app.
The problem is that ImGui parse the gui.ini file with the function sscanf, which in my case interpret the commas as numeric dots.
i.e.
Pos:60,10
is read as
instead of
I can fix it by adding:
in my ofApp.cpp, but this seems dirty to me.
I opened a topic about that in the forum: https://forum.openframeworks.cc/t/problem-with-locale-and-sscanf-ofximgui-related/30178
And this is the occasion to thank you for this addon !
The text was updated successfully, but these errors were encountered: