mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Docking, Style: fixed per-window ImGuiCol_UnsavedMarker changes not being latched by docked windows. (#8983, #9064)
This commit is contained in:
parent
d4c156a0f0
commit
891dd2d31e
3 changed files with 4 additions and 1 deletions
|
|
@ -150,6 +150,8 @@ Other Changes:
|
||||||
|
|
||||||
Docking+Viewports Branch:
|
Docking+Viewports Branch:
|
||||||
|
|
||||||
|
- Docking, Style: fixed per-window ImGuiCol_UnsavedMarker changes not being latched
|
||||||
|
by docked windows. (#8983, #9064)
|
||||||
- Examples:
|
- Examples:
|
||||||
- SDL2+DX11, SDL3+DX11, Win32+DX10, Win32+DX11: fixed one resource leak
|
- SDL2+DX11, SDL3+DX11, Win32+DX10, Win32+DX11: fixed one resource leak
|
||||||
from the use of MakeWindowAssociation() in 1.92.4. (#9010, #4350) [@o-3-o]
|
from the use of MakeWindowAssociation() in 1.92.4. (#9010, #4350) [@o-3-o]
|
||||||
|
|
|
||||||
|
|
@ -3601,7 +3601,7 @@ void ImGui::PopStyleColor(int count)
|
||||||
|
|
||||||
static const ImGuiCol GWindowDockStyleColors[ImGuiWindowDockStyleCol_COUNT] =
|
static const ImGuiCol GWindowDockStyleColors[ImGuiWindowDockStyleCol_COUNT] =
|
||||||
{
|
{
|
||||||
ImGuiCol_Text, ImGuiCol_TabHovered, ImGuiCol_Tab, ImGuiCol_TabSelected, ImGuiCol_TabSelectedOverline, ImGuiCol_TabDimmed, ImGuiCol_TabDimmedSelected, ImGuiCol_TabDimmedSelectedOverline,
|
ImGuiCol_Text, ImGuiCol_TabHovered, ImGuiCol_Tab, ImGuiCol_TabSelected, ImGuiCol_TabSelectedOverline, ImGuiCol_TabDimmed, ImGuiCol_TabDimmedSelected, ImGuiCol_TabDimmedSelectedOverline, ImGuiCol_UnsavedMarker,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const ImGuiStyleVarInfo GStyleVarsInfo[] =
|
static const ImGuiStyleVarInfo GStyleVarsInfo[] =
|
||||||
|
|
|
||||||
|
|
@ -2090,6 +2090,7 @@ enum ImGuiWindowDockStyleCol
|
||||||
ImGuiWindowDockStyleCol_TabDimmed,
|
ImGuiWindowDockStyleCol_TabDimmed,
|
||||||
ImGuiWindowDockStyleCol_TabDimmedSelected,
|
ImGuiWindowDockStyleCol_TabDimmedSelected,
|
||||||
ImGuiWindowDockStyleCol_TabDimmedSelectedOverline,
|
ImGuiWindowDockStyleCol_TabDimmedSelectedOverline,
|
||||||
|
ImGuiWindowDockStyleCol_UnsavedMarker,
|
||||||
ImGuiWindowDockStyleCol_COUNT
|
ImGuiWindowDockStyleCol_COUNT
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue