Fix private server modal size not being set correctly

ImGui::PopStyleVar() had to be called before ISurface::DrawSurface().
This commit is contained in:
Kawe Mazidjatari 2022-10-20 14:37:21 +02:00
parent c7d828610d
commit 49658c498f

View File

@ -114,9 +114,8 @@ void CBrowser::RunFrame(void)
return;
}
DrawSurface();
ImGui::PopStyleVar(nVars);
DrawSurface();
ImGui::End();
}