fix docking not working

This commit is contained in:
tildearrow 2025-08-10 17:05:24 -05:00
parent 270a22fe18
commit c06c1eb26e

View file

@ -1677,8 +1677,8 @@ enum ImGuiConfigFlags_
ImGuiConfigFlags_DockingEnable = 1 << 7, // Docking enable flags. ImGuiConfigFlags_DockingEnable = 1 << 7, // Docking enable flags.
// [CUSTOM] Inertial scroll // [CUSTOM] Inertial scroll
ImGuiConfigFlags_InertialScrollEnable = 1 << 7, // Docking enable flags. ImGuiConfigFlags_InertialScrollEnable = 1 << 8, // Docking enable flags.
ImGuiConfigFlags_NoHoverColors = 1 << 8, // Disable all "hovered" color changes (useful for mobile). ImGuiConfigFlags_NoHoverColors = 1 << 9, // Disable all "hovered" color changes (useful for mobile).
// [BETA] Viewports // [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. // 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.