@ -1868,14 +1868,14 @@ struct ImGuiContext
ImGuiNextWindowData NextWindowData ; // Storage for SetNextWindow** functions
// Shared stacks
ImVector < ImGuiColorMod > ColorStack ; // Stack for PushStyleColor()/PopStyleColor() - inherited by Begin()
ImVector < ImGuiStyleMod > StyleVarStack ; // Stack for PushStyleVar()/PopStyleVar() - inherited by Begin()
ImVector < ImFont * > FontStack ; // Stack for PushFont()/PopFont() - inherited by Begin()
ImVector < ImGuiID > FocusScopeStack ; // Stack for PushFocusScope()/PopFocusScope() - inherited by BeginChild(), pushed into by Begin()
ImVector < ImGuiItemFlags > ItemFlagsStack ; // Stack for PushItemFlag()/PopItemFlag() - inherited by Begin()
ImVector < ImGuiGroupData > GroupStack ; // Stack for BeginGroup()/EndGroup() - not inherited by Begin()
ImVector < ImGuiPopupData > OpenPopupStack ; // Which popups are open (persistent)
ImVector < ImGuiPopupData > BeginPopupStack ; // Which level of BeginPopup() we are in (reset every frame)
ImVector < ImGuiColorMod > ColorStack ; // Stack for PushStyleColor()/PopStyleColor() - inherited by Begin()
ImVector < ImGuiStyleMod > StyleVarStack ; // Stack for PushStyleVar()/PopStyleVar() - inherited by Begin()
ImVector < ImFont * > FontStack ; // Stack for PushFont()/PopFont() - inherited by Begin()
ImVector < ImGuiID > FocusScopeStack ; // Stack for PushFocusScope()/PopFocusScope() - inherited by BeginChild(), pushed into by Begin()
ImVector < ImGuiItemFlags > ItemFlagsStack ; // Stack for PushItemFlag()/PopItemFlag() - inherited by Begin()
ImVector < ImGuiGroupData > GroupStack ; // Stack for BeginGroup()/EndGroup() - not inherited by Begin()
ImVector < ImGuiPopupData > OpenPopupStack ; // Which popups are open (persistent)
ImVector < ImGuiPopupData > BeginPopupStack ; // Which level of BeginPopup() we are in (reset every frame)
ImVector < ImGuiNavTreeNodeData > NavTreeNodeStack ; // Stack for TreeNode() when a NavLeft requested is emitted.
int BeginMenuCount ;