forked from liza/Questionable
Fix context popups
This commit is contained in:
parent
cfe8962174
commit
4438d6fea2
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user