Skip to content

Commit

Permalink
fix:
Browse files Browse the repository at this point in the history
fix for breaking the right click context on the table
  • Loading branch information
grimmier378 committed Mar 29, 2024
1 parent d17b0cb commit 98a477e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions init.lua
Expand Up @@ -754,7 +754,7 @@ local function DrawSearchWindow()
ColorCount = DrawTheme(ColorCount, useThemeName)

SearchWindowOpen = ImGui.Begin("Alert Master##"..mq.TLO.Me.DisplayName(), SearchWindowOpen, GUI_Main.Flags)
ImGui.BeginGroup()

ImGui.SetWindowFontScale(ZoomLvl)
DrawToggles()
--ImGui.SameLine()
Expand Down Expand Up @@ -939,8 +939,9 @@ local function DrawSearchWindow()
ImGui.PopStyleVar(1)
if ColorCount > 0 then ImGui.PopStyleColor(ColorCount) end
ImGui.SetWindowFontScale(1)
ImGui.EndGroup()
if ImGui.IsItemHovered() then
--ImGui.BeginGroup()
-- ImGui.EndGroup()
if ImGui.IsWindowHovered() then
ImGui.SetWindowFocus("Alert Master##"..mq.TLO.Me.DisplayName())
end
ImGui.End()
Expand Down

0 comments on commit 98a477e

Please sign in to comment.