Fixed unused variable warning.

docking
omar 7 years ago
parent c2fc978983
commit c712f7275d

@ -3504,7 +3504,7 @@ void ImGui::NewFrame()
NewFrameUpdateMovingWindow();
NewFrameUpdateHoveredWindowAndCaptureFlags();
if (ImGuiWindow* modal_window = GetFrontMostModalRootWindow())
if (GetFrontMostModalRootWindow() != NULL)
g.ModalWindowDarkeningRatio = ImMin(g.ModalWindowDarkeningRatio + g.IO.DeltaTime * 6.0f, 1.0f);
else
g.ModalWindowDarkeningRatio = 0.0f;

Loading…
Cancel
Save