Skip to content
New issue

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

Bug using BeginGroup within a Columns set #630

Closed
ocornut opened this issue May 4, 2016 · 0 comments
Closed

Bug using BeginGroup within a Columns set #630

ocornut opened this issue May 4, 2016 · 0 comments

Comments

@ocornut
Copy link
Owner

ocornut commented May 4, 2016

Already fixed locally but posting with repro (so when we have testing system in place we can create tests for all those issues).

ImGui::Begin("Bug #630");
ImGui::Columns(2);

ImGui::BeginGroup();
ImGui::Text("Text 1");
ImGui::Text("Text 2");
ImGui::EndGroup();

ImGui::NextColumn();

ImGui::BeginGroup();
ImGui::Text("Text 3");
ImGui::Text("Text 4");
ImGui::EndGroup();

ImGui::Columns(1);
ImGui::End();

capture

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant