From 49658c498f85d6b642c1f0034a0f17dcd46381fb Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 20 Oct 2022 14:37:21 +0200 Subject: [PATCH] Fix private server modal size not being set correctly ImGui::PopStyleVar() had to be called before ISurface::DrawSurface(). --- r5dev/gameui/IBrowser.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/r5dev/gameui/IBrowser.cpp b/r5dev/gameui/IBrowser.cpp index 55eb7520..3f90762b 100644 --- a/r5dev/gameui/IBrowser.cpp +++ b/r5dev/gameui/IBrowser.cpp @@ -114,9 +114,8 @@ void CBrowser::RunFrame(void) return; } - DrawSurface(); - ImGui::PopStyleVar(nVars); + DrawSurface(); ImGui::End(); }