File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,8 @@ Other changes:
48
48
(#6341) [@lukaasm]
49
49
- Nav: Fixed navigation within tables/columns where item boundaries goes beyond columns limits,
50
50
unclipped bounding boxes would interfere with other columns. (#2221) [@zzzyap, @ocornut]
51
+ - Nav: Fixed CTRL+Tab into a root window with only childs with _NavFlattened flags
52
+ erroneously initializing default nav layer to menu layer.
51
53
- Debug Tools: Debug Log: Fixed not parsing 0xXXXXXXXX values for geo-locating on mouse
52
54
hover hover when the identifier is at the end of the line. (#5855)
53
55
- Backends: Clear bits sets io.BackendFlags on backend Shutdown(). (#6334, #6335] [@GereonV]
Original file line number Diff line number Diff line change @@ -5375,6 +5375,10 @@ void ImGui::EndChild()
5375
5375
{
5376
5376
// Not navigable into
5377
5377
ItemAdd(bb, 0);
5378
+
5379
+ // But when flattened we directly reach items, adjust active layer mask accordingly
5380
+ if (window->Flags & ImGuiWindowFlags_NavFlattened)
5381
+ parent_window->DC.NavLayersActiveMaskNext |= window->DC.NavLayersActiveMaskNext;
5378
5382
}
5379
5383
if (g.HoveredWindow == window)
5380
5384
g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow;
You can’t perform that action at this time.
0 commit comments