Lines Matching refs:ImGuiCond_Always
2534 SetWindowPosAllowFlags = SetWindowSizeAllowFlags = SetWindowCollapsedAllowFlags = ImGuiCond_Always | ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing;
3121 SetWindowPos(moving_window, pos, ImGuiCond_Always);
6184 g.NextWindowData.PosCond = cond ? cond : ImGuiCond_Always;
6192 g.NextWindowData.SizeCond = cond ? cond : ImGuiCond_Always;
6198 g.NextWindowData.SizeConstraintCond = ImGuiCond_Always;
6208 g.NextWindowData.ContentSizeCond = ImGuiCond_Always;
6216 g.NextWindowData.CollapsedCond = cond ? cond : ImGuiCond_Always;
6222 g.NextWindowData.FocusCond = ImGuiCond_Always; // Using a Cond member for consistency (may transition all of them to single flag set for fast Clear() op)
6229 g.NextWindowData.BgAlphaCond = ImGuiCond_Always; // Using a Cond member for consistency (may transition all of them to single flag set for fast Clear() op)
8130 SetNextWindowPos(g.IO.DisplaySize * 0.5f, ImGuiCond_Always, ImVec2(0.5f, 0.5f));
8609 cond = ImGuiCond_Always;
8614 IM_ASSERT(cond == ImGuiCond_Always || cond == ImGuiCond_Once);
8617 if (cond == ImGuiCond_Always || payload.DataFrameCount == -1)