From 7ef045658252a03aa3c9dd836c317fc6e8b27afb Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Mon, 5 Apr 2021 18:25:07 +0200 Subject: [PATCH] feat: run ImGuiHelpers.NewFrame each frame --- Dalamud/Interface/InterfaceManager.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dalamud/Interface/InterfaceManager.cs b/Dalamud/Interface/InterfaceManager.cs index f6eecc80c..1b0400fb9 100644 --- a/Dalamud/Interface/InterfaceManager.cs +++ b/Dalamud/Interface/InterfaceManager.cs @@ -269,6 +269,9 @@ namespace Dalamud.Interface ImGui.GetIO().ConfigFlags &= ~ImGuiConfigFlags.DockingEnable; } + // Process information needed by ImGuiHelpers each frame. + ImGuiHelpers.NewFrame(); + this.scene.Render(); return this.presentHook.Original(swapChain, syncInterval, presentFlags);