Skip to content

Commit e5668b8

Browse files
committed
Internals: rename ImGuiNextWindowData::Flags to HasFlags for consistency and to reduce mistakes.
1 parent 4982602 commit e5668b8

File tree

4 files changed

+39
-36
lines changed

4 files changed

+39
-36
lines changed

imgui.cpp

+26-26
Original file line numberDiff line numberDiff line change
@@ -6068,7 +6068,7 @@ bool ImGui::BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, I
60686068
// A SetNextWindowSize() call always has priority (#8020)
60696069
// (since the code in Begin() never supported SizeVal==0.0f aka auto-resize via SetNextWindowSize() call, we don't support it here for now)
60706070
// FIXME: We only support ImGuiCond_Always in this path. Supporting other paths would requires to obtain window pointer.
6071-
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) != 0 && (g.NextWindowData.SizeCond & ImGuiCond_Always) != 0)
6071+
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasSize) != 0 && (g.NextWindowData.SizeCond & ImGuiCond_Always) != 0)
60726072
{
60736073
if (g.NextWindowData.SizeVal.x > 0.0f)
60746074
{
@@ -6084,11 +6084,11 @@ bool ImGui::BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, I
60846084
SetNextWindowSize(size);
60856085

60866086
// Forward child flags (we allow prior settings to merge but it'll only work for adding flags)
6087-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasChildFlags)
6087+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasChildFlags)
60886088
g.NextWindowData.ChildFlags |= child_flags;
60896089
else
60906090
g.NextWindowData.ChildFlags = child_flags;
6091-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasChildFlags;
6091+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasChildFlags;
60926092

60936093
// Build up name. If you need to append to a same child from multiple location in the ID stack, use BeginChild(ImGuiID id) with a stable value.
60946094
// FIXME: 2023/11/14: commented out shorted version. We had an issue with multiple ### in child window path names, which the trailing hash helped workaround.
@@ -6302,7 +6302,7 @@ static ImVec2 CalcWindowSizeAfterConstraint(ImGuiWindow* window, const ImVec2& s
63026302
{
63036303
ImGuiContext& g = *GImGui;
63046304
ImVec2 new_size = size_desired;
6305-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint)
6305+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasSizeConstraint)
63066306
{
63076307
// See comments in SetNextWindowSizeConstraints() for details about setting size_min an size_max.
63086308
ImRect cr = g.NextWindowData.SizeConstraintRect;
@@ -6780,7 +6780,7 @@ void ImGui::RenderWindowDecorations(ImGuiWindow* window, const ImRect& title_bar
67806780
ImU32 bg_col = GetColorU32(GetWindowBgColorIdx(window));
67816781
bool override_alpha = false;
67826782
float alpha = 1.0f;
6783-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasBgAlpha)
6783+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasBgAlpha)
67846784
{
67856785
alpha = g.NextWindowData.BgAlphaVal;
67866786
override_alpha = true;
@@ -6950,7 +6950,7 @@ void ImGui::UpdateWindowSkipRefresh(ImGuiWindow* window)
69506950
{
69516951
ImGuiContext& g = *GImGui;
69526952
window->SkipRefresh = false;
6953-
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasRefreshPolicy) == 0)
6953+
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasRefreshPolicy) == 0)
69546954
return;
69556955
if (g.NextWindowData.RefreshFlagsVal & ImGuiWindowRefreshFlags_TryToAvoidRefresh)
69566956
{
@@ -7031,7 +7031,7 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags)
70317031
{
70327032
UpdateWindowInFocusOrderList(window, window_just_created, flags);
70337033
window->Flags = (ImGuiWindowFlags)flags;
7034-
window->ChildFlags = (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasChildFlags) ? g.NextWindowData.ChildFlags : 0;
7034+
window->ChildFlags = (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasChildFlags) ? g.NextWindowData.ChildFlags : 0;
70357035
window->LastFrameActive = current_frame;
70367036
window->LastTimeActive = (float)g.Time;
70377037
window->BeginOrderWithinParent = 0;
@@ -7095,7 +7095,7 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags)
70957095
// (FIXME: Consider splitting the HasXXX flags into X/Y components
70967096
bool window_pos_set_by_api = false;
70977097
bool window_size_x_set_by_api = false, window_size_y_set_by_api = false;
7098-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos)
7098+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasPos)
70997099
{
71007100
window_pos_set_by_api = (window->SetWindowPosAllowFlags & g.NextWindowData.PosCond) != 0;
71017101
if (window_pos_set_by_api && ImLengthSqr(g.NextWindowData.PosPivotVal) > 0.00001f)
@@ -7111,7 +7111,7 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags)
71117111
SetWindowPos(window, g.NextWindowData.PosVal, g.NextWindowData.PosCond);
71127112
}
71137113
}
7114-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize)
7114+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasSize)
71157115
{
71167116
window_size_x_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.x > 0.0f);
71177117
window_size_y_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.y > 0.0f);
@@ -7121,7 +7121,7 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags)
71217121
g.NextWindowData.SizeVal.y = window->SizeFull.y;
71227122
SetWindowSize(window, g.NextWindowData.SizeVal, g.NextWindowData.SizeCond);
71237123
}
7124-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasScroll)
7124+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasScroll)
71257125
{
71267126
if (g.NextWindowData.ScrollVal.x >= 0.0f)
71277127
{
@@ -7134,13 +7134,13 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags)
71347134
window->ScrollTargetCenterRatio.y = 0.0f;
71357135
}
71367136
}
7137-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasContentSize)
7137+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasContentSize)
71387138
window->ContentSizeExplicit = g.NextWindowData.ContentSizeVal;
71397139
else if (first_begin_of_the_frame)
71407140
window->ContentSizeExplicit = ImVec2(0.0f, 0.0f);
7141-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasCollapsed)
7141+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasCollapsed)
71427142
SetWindowCollapsed(window, g.NextWindowData.CollapsedVal, g.NextWindowData.CollapsedCond);
7143-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasFocus)
7143+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasFocus)
71447144
FocusWindow(window);
71457145
if (window->Appearing)
71467146
SetWindowConditionAllowFlags(window, ImGuiCond_Appearing, false);
@@ -8223,7 +8223,7 @@ void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiCond cond, const ImVec2& pi
82238223
{
82248224
ImGuiContext& g = *GImGui;
82258225
IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags.
8226-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasPos;
8226+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasPos;
82278227
g.NextWindowData.PosVal = pos;
82288228
g.NextWindowData.PosPivotVal = pivot;
82298229
g.NextWindowData.PosCond = cond ? cond : ImGuiCond_Always;
@@ -8233,7 +8233,7 @@ void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond)
82338233
{
82348234
ImGuiContext& g = *GImGui;
82358235
IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags.
8236-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasSize;
8236+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasSize;
82378237
g.NextWindowData.SizeVal = size;
82388238
g.NextWindowData.SizeCond = cond ? cond : ImGuiCond_Always;
82398239
}
@@ -8245,7 +8245,7 @@ void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond)
82458245
void ImGui::SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeCallback custom_callback, void* custom_callback_user_data)
82468246
{
82478247
ImGuiContext& g = *GImGui;
8248-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasSizeConstraint;
8248+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasSizeConstraint;
82498249
g.NextWindowData.SizeConstraintRect = ImRect(size_min, size_max);
82508250
g.NextWindowData.SizeCallback = custom_callback;
82518251
g.NextWindowData.SizeCallbackUserData = custom_callback_user_data;
@@ -8256,38 +8256,38 @@ void ImGui::SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& s
82568256
void ImGui::SetNextWindowContentSize(const ImVec2& size)
82578257
{
82588258
ImGuiContext& g = *GImGui;
8259-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasContentSize;
8259+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasContentSize;
82608260
g.NextWindowData.ContentSizeVal = ImTrunc(size);
82618261
}
82628262

82638263
void ImGui::SetNextWindowScroll(const ImVec2& scroll)
82648264
{
82658265
ImGuiContext& g = *GImGui;
8266-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasScroll;
8266+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasScroll;
82678267
g.NextWindowData.ScrollVal = scroll;
82688268
}
82698269

82708270
void ImGui::SetNextWindowCollapsed(bool collapsed, ImGuiCond cond)
82718271
{
82728272
ImGuiContext& g = *GImGui;
82738273
IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags.
8274-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasCollapsed;
8274+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasCollapsed;
82758275
g.NextWindowData.CollapsedVal = collapsed;
82768276
g.NextWindowData.CollapsedCond = cond ? cond : ImGuiCond_Always;
82778277
}
82788278

82798279
void ImGui::SetNextWindowBgAlpha(float alpha)
82808280
{
82818281
ImGuiContext& g = *GImGui;
8282-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasBgAlpha;
8282+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasBgAlpha;
82838283
g.NextWindowData.BgAlphaVal = alpha;
82848284
}
82858285

82868286
// This is experimental and meant to be a toy for exploring a future/wider range of features.
82878287
void ImGui::SetNextWindowRefreshPolicy(ImGuiWindowRefreshFlags flags)
82888288
{
82898289
ImGuiContext& g = *GImGui;
8290-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasRefreshPolicy;
8290+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasRefreshPolicy;
82918291
g.NextWindowData.RefreshFlagsVal = flags;
82928292
}
82938293

@@ -11301,7 +11301,7 @@ bool ImGui::BeginTooltipEx(ImGuiTooltipFlags tooltip_flags, ImGuiWindowFlags ext
1130111301
// See FindBestWindowPosForPopup() for positionning logic of other tooltips (not drag and drop ones).
1130211302
//ImVec2 tooltip_pos = g.IO.MousePos - g.ActiveIdClickOffset - g.Style.WindowPadding;
1130311303
const bool is_touchscreen = (g.IO.MouseSource == ImGuiMouseSource_TouchScreen);
11304-
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos) == 0)
11304+
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasPos) == 0)
1130511305
{
1130611306
ImVec2 tooltip_pos = is_touchscreen ? (g.IO.MousePos + TOOLTIP_DEFAULT_OFFSET_TOUCH * g.Style.MouseCursorScale) : (g.IO.MousePos + TOOLTIP_DEFAULT_OFFSET_MOUSE * g.Style.MouseCursorScale);
1130711307
ImVec2 tooltip_pivot = is_touchscreen ? TOOLTIP_DEFAULT_PIVOT_TOUCH : ImVec2(0.0f, 0.0f);
@@ -11724,7 +11724,7 @@ bool ImGui::BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags fla
1172411724
// Center modal windows by default for increased visibility
1172511725
// (this won't really last as settings will kick in, and is mostly for backward compatibility. user may do the same themselves)
1172611726
// FIXME: Should test for (PosCond & window->SetWindowPosAllowFlags) with the upcoming window.
11727-
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos) == 0)
11727+
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasPos) == 0)
1172811728
{
1172911729
const ImGuiViewport* viewport = GetMainViewport();
1173011730
SetNextWindowPos(viewport->GetCenter(), ImGuiCond_FirstUseEver, ImVec2(0.5f, 0.5f));
@@ -12017,7 +12017,7 @@ void ImGui::SetWindowFocus(const char* name)
1201712017
void ImGui::SetNextWindowFocus()
1201812018
{
1201912019
ImGuiContext& g = *GImGui;
12020-
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasFocus;
12020+
g.NextWindowData.HasFlags |= ImGuiNextWindowDataFlags_HasFocus;
1202112021
}
1202212022

1202312023
// Similar to IsWindowHovered()
@@ -16548,7 +16548,7 @@ static void ShowDebugLogFlag(const char* name, ImGuiDebugLogFlags flags)
1654816548
void ImGui::ShowDebugLogWindow(bool* p_open)
1654916549
{
1655016550
ImGuiContext& g = *GImGui;
16551-
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0)
16551+
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasSize) == 0)
1655216552
SetNextWindowSize(ImVec2(0.0f, GetFontSize() * 12.0f), ImGuiCond_FirstUseEver);
1655316553
if (!Begin("Dear ImGui Debug Log", p_open) || GetCurrentWindow()->BeginCount > 1)
1655416554
{
@@ -16868,7 +16868,7 @@ static int StackToolFormatLevelInfo(ImGuiIDStackTool* tool, int n, bool format_f
1686816868
void ImGui::ShowIDStackToolWindow(bool* p_open)
1686916869
{
1687016870
ImGuiContext& g = *GImGui;
16871-
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0)
16871+
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasSize) == 0)
1687216872
SetNextWindowSize(ImVec2(0.0f, GetFontSize() * 8.0f), ImGuiCond_FirstUseEver);
1687316873
if (!Begin("Dear ImGui ID Stack Tool", p_open) || GetCurrentWindow()->BeginCount > 1)
1687416874
{

imgui_internal.h

+6-3
Original file line numberDiff line numberDiff line change
@@ -1201,7 +1201,9 @@ enum ImGuiNextWindowDataFlags_
12011201
// Storage for SetNexWindow** functions
12021202
struct ImGuiNextWindowData
12031203
{
1204-
ImGuiNextWindowDataFlags Flags;
1204+
ImGuiNextWindowDataFlags HasFlags;
1205+
1206+
// Members below are NOT cleared. Always rely on HasFlags.
12051207
ImGuiCond PosCond;
12061208
ImGuiCond SizeCond;
12071209
ImGuiCond CollapsedCond;
@@ -1220,7 +1222,7 @@ struct ImGuiNextWindowData
12201222
ImGuiWindowRefreshFlags RefreshFlagsVal;
12211223

12221224
ImGuiNextWindowData() { memset(this, 0, sizeof(*this)); }
1223-
inline void ClearFlags() { Flags = ImGuiNextWindowDataFlags_None; }
1225+
inline void ClearFlags() { HasFlags = ImGuiNextWindowDataFlags_None; }
12241226
};
12251227

12261228
enum ImGuiNextItemDataFlags_
@@ -1237,7 +1239,8 @@ struct ImGuiNextItemData
12371239
{
12381240
ImGuiNextItemDataFlags HasFlags; // Called HasFlags instead of Flags to avoid mistaking this
12391241
ImGuiItemFlags ItemFlags; // Currently only tested/used for ImGuiItemFlags_AllowOverlap and ImGuiItemFlags_HasSelectionUserData.
1240-
// Non-flags members are NOT cleared by ItemAdd() meaning they are still valid during NavProcessItem()
1242+
1243+
// Members below are NOT cleared by ItemAdd() meaning they are still valid during e.g. NavProcessItem(). Always rely on HasFlags.
12411244
ImGuiID FocusScopeId; // Set by SetNextItemSelectionUserData()
12421245
ImGuiSelectionUserData SelectionUserData; // Set by SetNextItemSelectionUserData() (note that NULL/0 is a valid value, we use -1 == ImGuiSelectionUserData_Invalid to mark invalid values)
12431246
float Width; // Set by SetNextItemWidth()

imgui_tables.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ bool ImGui::BeginTableEx(const char* name, ImGuiID id, int columns_count, ImG
415415

416416
// Reset scroll if we are reactivating it
417417
if ((previous_flags & (ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY)) == 0)
418-
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasScroll) == 0)
418+
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasScroll) == 0)
419419
SetNextWindowScroll(ImVec2(0.0f, 0.0f));
420420

421421
// Create scrolling region (without border and zero window padding)

imgui_widgets.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,7 @@ bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboF
18291829
ImGuiContext& g = *GImGui;
18301830
ImGuiWindow* window = GetCurrentWindow();
18311831

1832-
ImGuiNextWindowDataFlags backup_next_window_data_flags = g.NextWindowData.Flags;
1832+
ImGuiNextWindowDataFlags backup_next_window_data_flags = g.NextWindowData.HasFlags;
18331833
g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values
18341834
if (window->SkipItems)
18351835
return false;
@@ -1898,7 +1898,7 @@ bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboF
18981898
if (!popup_open)
18991899
return false;
19001900

1901-
g.NextWindowData.Flags = backup_next_window_data_flags;
1901+
g.NextWindowData.HasFlags = backup_next_window_data_flags;
19021902
return BeginComboPopup(popup_id, bb, flags);
19031903
}
19041904

@@ -1913,7 +1913,7 @@ bool ImGui::BeginComboPopup(ImGuiID popup_id, const ImRect& bb, ImGuiComboFlags
19131913

19141914
// Set popup size
19151915
float w = bb.GetWidth();
1916-
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint)
1916+
if (g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasSizeConstraint)
19171917
{
19181918
g.NextWindowData.SizeConstraintRect.Min.x = ImMax(g.NextWindowData.SizeConstraintRect.Min.x, w);
19191919
}
@@ -1927,9 +1927,9 @@ bool ImGui::BeginComboPopup(ImGuiID popup_id, const ImRect& bb, ImGuiComboFlags
19271927
else if (flags & ImGuiComboFlags_HeightSmall) popup_max_height_in_items = 4;
19281928
else if (flags & ImGuiComboFlags_HeightLarge) popup_max_height_in_items = 20;
19291929
ImVec2 constraint_min(0.0f, 0.0f), constraint_max(FLT_MAX, FLT_MAX);
1930-
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0 || g.NextWindowData.SizeVal.x <= 0.0f) // Don't apply constraints if user specified a size
1930+
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasSize) == 0 || g.NextWindowData.SizeVal.x <= 0.0f) // Don't apply constraints if user specified a size
19311931
constraint_min.x = w;
1932-
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0 || g.NextWindowData.SizeVal.y <= 0.0f)
1932+
if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasSize) == 0 || g.NextWindowData.SizeVal.y <= 0.0f)
19331933
constraint_max.y = CalcMaxPopupHeightFromItemCount(popup_max_height_in_items);
19341934
SetNextWindowSizeConstraints(constraint_min, constraint_max);
19351935
}
@@ -2061,7 +2061,7 @@ bool ImGui::Combo(const char* label, int* current_item, const char* (*getter)(vo
20612061
preview_value = getter(user_data, *current_item);
20622062

20632063
// The old Combo() API exposed "popup_max_height_in_items". The new more general BeginCombo() API doesn't have/need it, but we emulate it here.
2064-
if (popup_max_height_in_items != -1 && !(g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint))
2064+
if (popup_max_height_in_items != -1 && !(g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasSizeConstraint))
20652065
SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, CalcMaxPopupHeightFromItemCount(popup_max_height_in_items)));
20662066

20672067
if (!BeginCombo(label, preview_value, ImGuiComboFlags_None))

0 commit comments

Comments
 (0)