Fix context popups

This commit is contained in:
Taurenkey 2024-12-26 11:35:26 +00:00
parent cfe8962174
commit 4438d6fea2

View File

@ -24,7 +24,10 @@ internal sealed class QuestJournalUtils
public void ShowContextMenu(IQuestInfo questInfo, Quest? quest, string label)
{
using var popup = ImRaii.ContextPopup($"##QuestPopup{questInfo.QuestId}", ImGuiPopupFlags.MouseButtonRight);
if (ImGui.IsItemClicked(ImGuiMouseButton.Right))
ImGui.OpenPopup($"##QuestPopup{questInfo.QuestId}");
using var popup = ImRaii.Popup($"##QuestPopup{questInfo.QuestId}");
if (!popup)
return;