File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,8 @@ Other changes:
58
58
yourself based on your own logic. (#8223)
59
59
- Nav: Fixed an issue where Alt key would clear current active item on
60
60
windows with the ImGuiWindowFlags_NoNavInputs flag. (#8231)
61
+ - Debug Tools: Debug Log: hovering 0xXXXXXXXX values in log is allowed even
62
+ if a popup is blocking mouse access to the debug log window. (#5855)
61
63
- Backends: Vulkan: Fixed setting VkSwapchainCreateInfoKHR::preTransform for
62
64
platforms not supporting VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR. (#8222) [@Zer0xFF]
63
65
Original file line number Diff line number Diff line change @@ -16501,7 +16501,7 @@ void ImGui::ShowDebugLogWindow(bool* p_open)
16501
16501
void ImGui::DebugTextUnformattedWithLocateItem(const char* line_begin, const char* line_end)
16502
16502
{
16503
16503
TextUnformatted(line_begin, line_end);
16504
- if (!IsItemHovered())
16504
+ if (!IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem ))
16505
16505
return;
16506
16506
ImGuiContext& g = *GImGui;
16507
16507
ImRect text_rect = g.LastItemData.Rect;
You can’t perform that action at this time.
0 commit comments