Skip to content

Commit d0d571e

Browse files
committed
Merge branch 'master' into docking
# Conflicts: # backends/imgui_impl_vulkan.cpp # imgui_internal.h
2 parents 2f91176 + a604d4f commit d0d571e

File tree

12 files changed

+122
-53
lines changed

12 files changed

+122
-53
lines changed

backends/imgui_impl_metal.mm

+1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ bool ImGui_ImplMetal_Init(id<MTLDevice> device)
154154
void ImGui_ImplMetal_Shutdown()
155155
{
156156
ImGui_ImplMetal_Data* bd = ImGui_ImplMetal_GetBackendData();
157+
IM_UNUSED(bd);
157158
IM_ASSERT(bd != nullptr && "No renderer backend to shutdown, or already shutdown?");
158159
ImGui_ImplMetal_ShutdownMultiViewportSupport();
159160
ImGui_ImplMetal_DestroyDeviceObjects();

backends/imgui_impl_vulkan.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
// CHANGELOG
2929
// (minor and older changes stripped away, please see git history for details)
3030
// 2025-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
31+
// 2025-01-09: Vulkan: Added IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE to clarify how many image sampler descriptors are expected to be available in descriptor pool. (#6642)
3132
// 2025-01-06: Vulkan: Added more ImGui_ImplVulkanH_XXXX helper functions to simplify our examples.
3233
// 2024-12-11: Vulkan: Fixed setting VkSwapchainCreateInfoKHR::preTransform for platforms not supporting VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR. (#8222)
3334
// 2024-11-27: Vulkan: Make user-provided descriptor pool optional. As a convenience, when setting init_info->DescriptorPoolSize the backend will create one itself. (#8172, #4867)
@@ -1052,8 +1053,9 @@ bool ImGui_ImplVulkan_CreateDeviceObjects()
10521053
check_vk_result(err);
10531054
}
10541055

1055-
if (v->DescriptorPoolSize)
1056+
if (v->DescriptorPoolSize != 0)
10561057
{
1058+
IM_ASSERT(v->DescriptorPoolSize > IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE);
10571059
VkDescriptorPoolSize pool_size = { VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, v->DescriptorPoolSize };
10581060
VkDescriptorPoolCreateInfo pool_info = {};
10591061
pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;

backends/imgui_impl_vulkan.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,16 @@
6262
#define IMGUI_IMPL_VULKAN_HAS_DYNAMIC_RENDERING
6363
#endif
6464

65+
// Current version of the backend use 1 descriptor for the font atlas + as many as additional calls done to ImGui_ImplVulkan_AddTexture().
66+
// It is expected that as early as Q1 2025 the backend will use a few more descriptors. Use this value + number of desired calls to ImGui_ImplVulkan_AddTexture().
67+
#define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (1) // Minimum per atlas
68+
6569
// Initialization data, for ImGui_ImplVulkan_Init()
6670
// [Please zero-clear before use!]
6771
// - About descriptor pool:
6872
// - A VkDescriptorPool should be created with VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT,
6973
// and must contain a pool size large enough to hold a small number of VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER descriptors.
7074
// - As an convenience, by setting DescriptorPoolSize > 0 the backend will create one for you.
71-
// - Current version of the backend use 1 descriptor for the font atlas + as many as additional calls done to ImGui_ImplVulkan_AddTexture().
72-
// - It is expected that as early as Q1 2025 the backend will use a few more descriptors, so aim at 10 + number of desierd calls to ImGui_ImplVulkan_AddTexture().
7375
// - About dynamic rendering:
7476
// - When using dynamic rendering, set UseDynamicRendering=true and fill PipelineRenderingCreateInfo structure.
7577
struct ImGui_ImplVulkan_InitInfo

docs/CHANGELOG.txt

+18-1
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,19 @@ Breaking changes:
4343

4444
Other changes:
4545

46+
- Fixed issues with IsItemDeactivated() and IsItemDeactivatedAfterEdit() not
47+
emitting a reliable signal when an item is deactivated externally: e.g.
48+
via an explicit clear of focus, clear of active id, opening of modal etc.
49+
(#5184, #5904, #6766, #8303, #8004)
50+
- It used to work when the interruption happened in the frame before the
51+
active item as submitted, but not after. It should work in both cases now.
52+
- While this is not specific to a certain widgets, typically it would
53+
mostly be noticeable on InputText() because it keeps ActiveId for a
54+
longer time while allowing other interaction to happen.
4655
- Error Handling: Fixed bugs recovering from within a table that created
4756
a child window, and from nested child windows. (#1651)
57+
- Error Handling: Turned common EndTable() and other TableXXX functions
58+
fail cases into a recoverable error. (#1651, #8314)
4859
- InputText: Fixed a bug where character replacements performed from a callback
4960
were not applied when pasting from clipbard. (#8229)
5061
- InputText: Fixed issue when activating a ReadOnly field when the underlying
@@ -79,6 +90,10 @@ Other changes:
7990
platforms not supporting VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR. (#8222) [@Zer0xFF]
8091
- Backends: Vulkan: Added a few more ImGui_ImplVulkanH_XXX helper functions
8192
primarily for the purpose of making our examples simpler.
93+
- Backends: Vulkan: Added IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE to clarify
94+
how many image sampler descriptors are expected to be available in the provided
95+
descriptor pool. Current backend needs 1 but it is expected that by end of Q1 2025
96+
this number will grow (will staying a very small number). (#6642)
8297
- Backends: DX11: Expose vertex constant buffer in ImGui_ImplDX11_RenderState.
8398
Reset projection matrix in ImDrawCallback_ResetRenderState handlers. (#6969, #5834, #7468, #3590)
8499
- Backends: DX10: Expose ImGui_ImplDX10_RenderState for completeness. (#6969, #5834, #7468, #3590)
@@ -156,11 +171,12 @@ Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v
156171
Breaking changes:
157172

158173
- Commented out pre-1.87 IO system (equivalent to using IMGUI_DISABLE_OBSOLETE_KEYIO or IMGUI_DISABLE_OBSOLETE_FUNCTIONS before).
159-
- io.KeyMap[] and io.KeysDown[] are removed (obsoleted February 2022).
174+
- io.KeyMap[] and io.KeysDown[] are removed (obsoleted February 2022). Use IsKeyDown() instead.
160175
- io.NavInputs[] and ImGuiNavInput are removed (obsoleted July 2022).
161176
- Pre-1.87 backends are not supported:
162177
- backends need to call io.AddKeyEvent(), io.AddMouseEvent() instead of writing to io.KeysDown[], io.MouseDown[] fields.
163178
- backends need to call io.AddKeyAnalogEvent() for gamepad values instead of writing to io.NavInputs[] fields.
179+
- you can use IsKeyDown() instead of reading from io.KeysDown[].
164180
- For more references:
165181
- read 1.87 and 1.88 part of API BREAKING CHANGES in imgui.cpp or read Changelog for 1.87 and 1.88.
166182
- read https://github.com/ocornut/imgui/issues/4921
@@ -2656,6 +2672,7 @@ Breaking Changes:
26562672
- For all calls to IO new functions, the Dear ImGui context should be bound/current.
26572673
- Reworked IO keyboard input API: (#4921, #2625, #3724) [@thedmd, @ocornut]
26582674
- Added io.AddKeyEvent() function, obsoleting writing directly to io.KeyMap[], io.KeysDown[] arrays.
2675+
- You can use IsKeyDown() instead of reading from io.KeysDown[].
26592676
- For keyboard modifiers, you can call io.AddKeyEvent() with ImGuiKey_ModXXX values,
26602677
obsoleting writing directly to io.KeyCtrl, io.KeyShift etc.
26612678
- Added io.SetKeyEventNativeData() function (optional) to pass native and old legacy indices.

examples/example_glfw_vulkan/main.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -189,17 +189,18 @@ static void SetupVulkan(ImVector<const char*> instance_extensions)
189189
}
190190

191191
// Create Descriptor Pool
192-
// The example only requires a single combined image sampler descriptor for the font image and only uses one descriptor set (for that)
193-
// If you wish to load e.g. additional textures you may need to alter pools sizes.
192+
// If you wish to load e.g. additional textures you may need to alter pools sizes and maxSets.
194193
{
195194
VkDescriptorPoolSize pool_sizes[] =
196195
{
197-
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, 1 },
196+
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE },
198197
};
199198
VkDescriptorPoolCreateInfo pool_info = {};
200199
pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
201200
pool_info.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT;
202-
pool_info.maxSets = 1;
201+
pool_info.maxSets = 0;
202+
for (VkDescriptorPoolSize& pool_size : pool_sizes)
203+
pool_info.maxSets += pool_size.descriptorCount;
203204
pool_info.poolSizeCount = (uint32_t)IM_ARRAYSIZE(pool_sizes);
204205
pool_info.pPoolSizes = pool_sizes;
205206
err = vkCreateDescriptorPool(g_Device, &pool_info, g_Allocator, &g_DescriptorPool);

examples/example_sdl2_vulkan/main.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -177,17 +177,18 @@ static void SetupVulkan(ImVector<const char*> instance_extensions)
177177
}
178178

179179
// Create Descriptor Pool
180-
// The example only requires a single combined image sampler descriptor for the font image and only uses one descriptor set (for that)
181-
// If you wish to load e.g. additional textures you may need to alter pools sizes.
180+
// If you wish to load e.g. additional textures you may need to alter pools sizes and maxSets.
182181
{
183182
VkDescriptorPoolSize pool_sizes[] =
184183
{
185-
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, 1 },
184+
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE },
186185
};
187186
VkDescriptorPoolCreateInfo pool_info = {};
188187
pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
189188
pool_info.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT;
190-
pool_info.maxSets = 1;
189+
pool_info.maxSets = 0;
190+
for (VkDescriptorPoolSize& pool_size : pool_sizes)
191+
pool_info.maxSets += pool_size.descriptorCount;
191192
pool_info.poolSizeCount = (uint32_t)IM_ARRAYSIZE(pool_sizes);
192193
pool_info.pPoolSizes = pool_sizes;
193194
err = vkCreateDescriptorPool(g_Device, &pool_info, g_Allocator, &g_DescriptorPool);

examples/example_sdl3_vulkan/main.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -182,17 +182,18 @@ static void SetupVulkan(ImVector<const char*> instance_extensions)
182182
}
183183

184184
// Create Descriptor Pool
185-
// The example only requires a single combined image sampler descriptor for the font image and only uses one descriptor set (for that)
186-
// If you wish to load e.g. additional textures you may need to alter pools sizes.
185+
// If you wish to load e.g. additional textures you may need to alter pools sizes and maxSets.
187186
{
188187
VkDescriptorPoolSize pool_sizes[] =
189188
{
190-
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, 1 },
189+
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE },
191190
};
192191
VkDescriptorPoolCreateInfo pool_info = {};
193192
pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
194193
pool_info.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT;
195-
pool_info.maxSets = 1;
194+
pool_info.maxSets = 0;
195+
for (VkDescriptorPoolSize& pool_size : pool_sizes)
196+
pool_info.maxSets += pool_size.descriptorCount;
196197
pool_info.poolSizeCount = (uint32_t)IM_ARRAYSIZE(pool_sizes);
197198
pool_info.pPoolSizes = pool_sizes;
198199
err = vkCreateDescriptorPool(g_Device, &pool_info, g_Allocator, &g_DescriptorPool);

examples/example_win32_vulkan/main.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -178,17 +178,18 @@ static void SetupVulkan(ImVector<const char*> instance_extensions)
178178
}
179179

180180
// Create Descriptor Pool
181-
// The example only requires a single combined image sampler descriptor for the font image and only uses one descriptor set (for that)
182-
// If you wish to load e.g. additional textures you may need to alter pools sizes.
181+
// If you wish to load e.g. additional textures you may need to alter pools sizes and maxSets.
183182
{
184183
VkDescriptorPoolSize pool_sizes[] =
185184
{
186-
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, 1 },
185+
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE },
187186
};
188187
VkDescriptorPoolCreateInfo pool_info = {};
189188
pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
190189
pool_info.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT;
191-
pool_info.maxSets = 1;
190+
pool_info.maxSets = 0;
191+
for (VkDescriptorPoolSize& pool_size : pool_sizes)
192+
pool_info.maxSets += pool_size.descriptorCount;
192193
pool_info.poolSizeCount = (uint32_t)IM_ARRAYSIZE(pool_sizes);
193194
pool_info.pPoolSizes = pool_sizes;
194195
err = vkCreateDescriptorPool(g_Device, &pool_info, g_Allocator, &g_DescriptorPool);

imgui.cpp

+25-17
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ CODE
658658
- Backend writing to io.MouseHoveredViewport -> backend should call io.AddMouseViewportEvent() [Docking branch w/ multi-viewports only]
659659
note: for all calls to IO new functions, the Dear ImGui context should be bound/current.
660660
read https://github.com/ocornut/imgui/issues/4921 for details.
661-
- 2022/01/10 (1.87) - inputs: reworked keyboard IO. Removed io.KeyMap[], io.KeysDown[] in favor of calling io.AddKeyEvent(). Removed GetKeyIndex(), now unnecessary. All IsKeyXXX() functions now take ImGuiKey values. All features are still functional until IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Read Changelog and Release Notes for details.
661+
- 2022/01/10 (1.87) - inputs: reworked keyboard IO. Removed io.KeyMap[], io.KeysDown[] in favor of calling io.AddKeyEvent(), ImGui::IsKeyDown(). Removed GetKeyIndex(), now unnecessary. All IsKeyXXX() functions now take ImGuiKey values. All features are still functional until IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Read Changelog and Release Notes for details.
662662
- IsKeyPressed(MY_NATIVE_KEY_XXX) -> use IsKeyPressed(ImGuiKey_XXX)
663663
- IsKeyPressed(GetKeyIndex(ImGuiKey_XXX)) -> use IsKeyPressed(ImGuiKey_XXX)
664664
- Backend writing to io.KeyMap[],io.KeysDown[] -> backend should call io.AddKeyEvent() (+ call io.SetKeyEventNativeData() if you want legacy user code to stil function with legacy key codes).
@@ -4002,9 +4002,7 @@ ImGuiContext::ImGuiContext(ImFontAtlas* shared_font_atlas)
40024002
ActiveIdSource = ImGuiInputSource_None;
40034003
ActiveIdMouseButton = -1;
40044004
ActiveIdPreviousFrame = 0;
4005-
ActiveIdPreviousFrameIsAlive = false;
4006-
ActiveIdPreviousFrameHasBeenEditedBefore = false;
4007-
ActiveIdPreviousFrameWindow = NULL;
4005+
memset(&DeactivatedItemData, 0, sizeof(DeactivatedItemData));
40084006
memset(&ActiveIdValueOnActivation, 0, sizeof(ActiveIdValueOnActivation));
40094007
LastActiveId = 0;
40104008
LastActiveIdTimer = 0.0f;
@@ -4270,7 +4268,7 @@ void ImGui::Shutdown()
42704268
g.WindowsById.Clear();
42714269
g.NavWindow = NULL;
42724270
g.HoveredWindow = g.HoveredWindowUnderMovingWindow = NULL;
4273-
g.ActiveIdWindow = g.ActiveIdPreviousFrameWindow = NULL;
4271+
g.ActiveIdWindow = NULL;
42744272
g.MovingWindow = NULL;
42754273

42764274
g.KeysRoutingTable.Clear();
@@ -4460,6 +4458,13 @@ void ImGui::SetActiveID(ImGuiID id, ImGuiWindow* window)
44604458
g.MovingWindow = NULL;
44614459
}
44624460

4461+
// Store deactivate data
4462+
ImGuiDeactivatedItemData* deactivated_data = &g.DeactivatedItemData;
4463+
deactivated_data->ID = g.ActiveId;
4464+
deactivated_data->ElapseFrame = (g.LastItemData.ID == g.ActiveId) ? g.FrameCount : g.FrameCount + 1; // FIXME: OK to use LastItemData?
4465+
deactivated_data->HasBeenEditedBefore = g.ActiveIdHasBeenEditedBefore;
4466+
deactivated_data->IsAlive = (g.ActiveIdIsAlive == g.ActiveId);
4467+
44634468
// This could be written in a more general way (e.g associate a hook to ActiveId),
44644469
// but since this is currently quite an exception we'll leave it as is.
44654470
// One common scenario leading to this is: pressing Key ->NavMoveRequestApplyResult() -> ClearActiveID()
@@ -5378,11 +5383,8 @@ void ImGui::NewFrame()
53785383
g.ActiveIdTimer += g.IO.DeltaTime;
53795384
g.LastActiveIdTimer += g.IO.DeltaTime;
53805385
g.ActiveIdPreviousFrame = g.ActiveId;
5381-
g.ActiveIdPreviousFrameWindow = g.ActiveIdWindow;
5382-
g.ActiveIdPreviousFrameHasBeenEditedBefore = g.ActiveIdHasBeenEditedBefore;
53835386
g.ActiveIdIsAlive = 0;
53845387
g.ActiveIdHasBeenEditedThisFrame = false;
5385-
g.ActiveIdPreviousFrameIsAlive = false;
53865388
g.ActiveIdIsJustActivated = false;
53875389
if (g.TempInputId != 0 && g.ActiveId != g.TempInputId)
53885390
g.TempInputId = 0;
@@ -5391,6 +5393,9 @@ void ImGui::NewFrame()
53915393
g.ActiveIdUsingNavDirMask = 0x00;
53925394
g.ActiveIdUsingAllKeyboardKeys = false;
53935395
}
5396+
if (g.DeactivatedItemData.ElapseFrame < g.FrameCount)
5397+
g.DeactivatedItemData.ID = 0;
5398+
g.DeactivatedItemData.IsAlive = false;
53945399

53955400
// Record when we have been stationary as this state is preserved while over same item.
53965401
// FIXME: The way this is expressed means user cannot alter HoverStationaryDelay during the frame to use varying values.
@@ -6101,13 +6106,13 @@ bool ImGui::IsItemDeactivated()
61016106
ImGuiContext& g = *GImGui;
61026107
if (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HasDeactivated)
61036108
return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Deactivated) != 0;
6104-
return (g.ActiveIdPreviousFrame == g.LastItemData.ID && g.ActiveIdPreviousFrame != 0 && g.ActiveId != g.LastItemData.ID);
6109+
return (g.DeactivatedItemData.ID == g.LastItemData.ID && g.LastItemData.ID != 0 && g.DeactivatedItemData.ElapseFrame >= g.FrameCount);
61056110
}
61066111

61076112
bool ImGui::IsItemDeactivatedAfterEdit()
61086113
{
61096114
ImGuiContext& g = *GImGui;
6110-
return IsItemDeactivated() && (g.ActiveIdPreviousFrameHasBeenEditedBefore || (g.ActiveId == 0 && g.ActiveIdHasBeenEditedBefore));
6115+
return IsItemDeactivated() && g.DeactivatedItemData.HasBeenEditedBefore;
61116116
}
61126117

61136118
// == (GetItemID() == GetFocusID() && GetFocusID() != 0)
@@ -11115,8 +11120,8 @@ void ImGui::KeepAliveID(ImGuiID id)
1111511120
ImGuiContext& g = *GImGui;
1111611121
if (g.ActiveId == id)
1111711122
g.ActiveIdIsAlive = id;
11118-
if (g.ActiveIdPreviousFrame == id)
11119-
g.ActiveIdPreviousFrameIsAlive = true;
11123+
if (g.DeactivatedItemData.ID == id)
11124+
g.DeactivatedItemData.IsAlive = true;
1112011125
}
1112111126

1112211127
// Declare item bounding box for clipping and interaction.
@@ -11201,6 +11206,9 @@ bool ImGui::ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb_arg, ImGu
1120111206
// window->DrawList->AddRect(g.LastItemData.NavRect.Min, g.LastItemData.NavRect.Max, IM_COL32(255,255,0,255)); // [DEBUG]
1120211207
#endif
1120311208

11209+
if (id != 0 && g.DeactivatedItemData.ID == id)
11210+
g.DeactivatedItemData.ElapseFrame = g.FrameCount;
11211+
1120411212
// We need to calculate this now to take account of the current clipping rectangle (as items like Selectable may change them)
1120511213
if (is_rect_visible)
1120611214
g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Visible;
@@ -11560,7 +11568,7 @@ void ImGui::BeginGroup()
1156011568
group_data.BackupActiveIdIsAlive = g.ActiveIdIsAlive;
1156111569
group_data.BackupHoveredIdIsAlive = g.HoveredId != 0;
1156211570
group_data.BackupIsSameLine = window->DC.IsSameLine;
11563-
group_data.BackupActiveIdPreviousFrameIsAlive = g.ActiveIdPreviousFrameIsAlive;
11571+
group_data.BackupDeactivatedIdIsAlive = g.DeactivatedItemData.IsAlive;
1156411572
group_data.EmitItem = true;
1156511573

1156611574
window->DC.GroupOffset.x = window->DC.CursorPos.x - window->Pos.x - window->DC.ColumnsOffset.x;
@@ -11611,11 +11619,11 @@ void ImGui::EndGroup()
1161111619
// Also if you grep for LastItemId you'll notice it is only used in that context.
1161211620
// (The two tests not the same because ActiveIdIsAlive is an ID itself, in order to be able to handle ActiveId being overwritten during the frame.)
1161311621
const bool group_contains_curr_active_id = (group_data.BackupActiveIdIsAlive != g.ActiveId) && (g.ActiveIdIsAlive == g.ActiveId) && g.ActiveId;
11614-
const bool group_contains_prev_active_id = (group_data.BackupActiveIdPreviousFrameIsAlive == false) && (g.ActiveIdPreviousFrameIsAlive == true);
11622+
const bool group_contains_deactivated_id = (group_data.BackupDeactivatedIdIsAlive == false) && (g.DeactivatedItemData.IsAlive == true);
1161511623
if (group_contains_curr_active_id)
1161611624
g.LastItemData.ID = g.ActiveId;
11617-
else if (group_contains_prev_active_id)
11618-
g.LastItemData.ID = g.ActiveIdPreviousFrame;
11625+
else if (group_contains_deactivated_id)
11626+
g.LastItemData.ID = g.DeactivatedItemData.ID;
1161911627
g.LastItemData.Rect = group_bb;
1162011628

1162111629
// Forward Hovered flag
@@ -11629,7 +11637,7 @@ void ImGui::EndGroup()
1162911637

1163011638
// Forward Deactivated flag
1163111639
g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HasDeactivated;
11632-
if (group_contains_prev_active_id && g.ActiveId != g.ActiveIdPreviousFrame)
11640+
if (group_contains_deactivated_id)
1163311641
g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Deactivated;
1163411642

1163511643
g.GroupStack.pop_back();

0 commit comments

Comments
 (0)