From c06c1eb26e9894d77f73a15d3389cd2f8715fd63 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sun, 10 Aug 2025 17:05:24 -0500 Subject: [PATCH] fix docking not working --- extern/imgui_patched/imgui.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extern/imgui_patched/imgui.h b/extern/imgui_patched/imgui.h index 5e48b6063..7873522e7 100644 --- a/extern/imgui_patched/imgui.h +++ b/extern/imgui_patched/imgui.h @@ -1677,8 +1677,8 @@ enum ImGuiConfigFlags_ ImGuiConfigFlags_DockingEnable = 1 << 7, // Docking enable flags. // [CUSTOM] Inertial scroll - ImGuiConfigFlags_InertialScrollEnable = 1 << 7, // Docking enable flags. - ImGuiConfigFlags_NoHoverColors = 1 << 8, // Disable all "hovered" color changes (useful for mobile). + ImGuiConfigFlags_InertialScrollEnable = 1 << 8, // Docking enable flags. + ImGuiConfigFlags_NoHoverColors = 1 << 9, // Disable all "hovered" color changes (useful for mobile). // [BETA] Viewports // When using viewports it is recommended that your default value for ImGuiCol_WindowBg is opaque (Alpha=1.0) so transition to a viewport won't be noticeable.