Imgui Dock white screen error when reopening application
Closed this issue · 2 comments
kitebizelt commented
What I did:
- Included imgui_dock
- wrote this on setup:
ImGui::InitDock();
- wrote this on loop:
if(ImGui::Begin("Dock Demo"))
{
// dock layout by hard-coded or .ini file
ImGui::BeginDockspace("Paddle");
if(ImGui::BeginDock("Dock 1")){
ImGui::Text("Hi");
}
ImGui::EndDock();
if(ImGui::BeginDock("Dock 2")){
ImGui::Text("I'm BentleyBlanks!");
}
ImGui::EndDock();
if(ImGui::BeginDock("Dock 3")){
ImGui::Text("Hello World");
}
ImGui::EndDock();
ImGui::EndDockspace();
}
ImGui::End();
- Launch the application
- Close the application
- Relaunch the application
- white screen, the application doesn't to anything.
BentleyBlanks commented
It also happened on my friend's pc, so I'm working on it. Maybe it could be fixed these days.
lonelyWaiting commented
Problem solved