Fix reappearing window.

- the name of the window passed to ImGui must be stable
This commit is contained in:
Artyom Shalkhakov 2025-01-31 10:52:09 -07:00
parent e88117cb8d
commit 211657c587

View file

@ -84,7 +84,7 @@ void PDAEditor::Draw() {
showTool = isShown;
if ( ImGui::Begin( windowTitle, &showTool ) ) //, ImGuiWindowFlags_ShowBorders ) )
if ( ImGui::Begin( "PDA Editor", &showTool, ImGuiWindowFlags_AlwaysAutoResize)) //, ImGuiWindowFlags_ShowBorders ) )
{
if ( ImGui::BeginTable( "table", 3 ) )
{