Skip to content

Commit

Permalink
Nav: Taking note that we should aim to remove MenuBarAppending later.
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed Sep 29, 2017
1 parent 1eaa9d0 commit 587e637
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions imgui_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -665,8 +665,9 @@ struct IMGUI_API ImGuiDrawContext
bool LastItemRectHoveredRect;
bool NavHasScroll; // Set when scrolling can be used (ScrollMax > 0.0f)
int NavLayerCurrent; // Current layer, 0..31 (we currently only use 0..1)
int NavLayerActiveMask, NavLayerActiveMaskNext; // Which layer have been written to.
bool MenuBarAppending;
int NavLayerActiveMask; // Which layer have been written to (result from previous frame)
int NavLayerActiveMaskNext; // Which layer have been written to (buffer for current frame)
bool MenuBarAppending; // FIXME: Remove this
float MenuBarOffsetX;
ImVector<ImGuiWindow*> ChildWindows;
ImGuiStorage* StateStorage;
Expand Down

0 comments on commit 587e637

Please sign in to comment.