We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Might be a logic error but something like this
if(showStatsWindow) { if(ImGui::Begin("App Stats", &showStatsWindow)) { ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate); ImGui::End(); } }
would trigger an error here: https://github.com/jvcleave/ofxImGui/blob/master/libs/imgui/src/imgui.cpp#L2355
if the window bar was double-clicked quickly.
The below implementation doesn't seem to have the same issue
if(showStatsWindow) { if(!ImGui::Begin("App Stats", &showStatsWindow)) { ImGui::End(); }else { ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate); ImGui::End(); } }
I tried this PR as well but it didn't make a difference #33
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Might be a logic error but something like this
would trigger an error here:
https://github.com/jvcleave/ofxImGui/blob/master/libs/imgui/src/imgui.cpp#L2355
if the window bar was double-clicked quickly.
The below implementation doesn't seem to have the same issue
I tried this PR as well but it didn't make a difference
#33
The text was updated successfully, but these errors were encountered: