forked from aly/qstbak
muffin v7.4
This commit is contained in:
parent
8a7847ff37
commit
a4175abacd
54 changed files with 95984 additions and 123967 deletions
|
|
@ -44,18 +44,17 @@ internal sealed class QuestJournalUtils
|
|||
|
||||
public void ShowContextMenu(IQuestInfo questInfo, Quest? quest, string label)
|
||||
{
|
||||
ImU8String strId;
|
||||
if (ImGui.IsItemClicked(ImGuiMouseButton.Right))
|
||||
{
|
||||
strId = new ImU8String(12, 1);
|
||||
ImU8String strId = new ImU8String(12, 1);
|
||||
strId.AppendLiteral("##QuestPopup");
|
||||
strId.AppendFormatted(questInfo.QuestId);
|
||||
ImGui.OpenPopup(strId);
|
||||
}
|
||||
strId = new ImU8String(12, 1);
|
||||
strId.AppendLiteral("##QuestPopup");
|
||||
strId.AppendFormatted(questInfo.QuestId);
|
||||
using ImRaii.IEndObject endObject = ImRaii.Popup(strId);
|
||||
ImU8String id = new ImU8String(12, 1);
|
||||
id.AppendLiteral("##QuestPopup");
|
||||
id.AppendFormatted(questInfo.QuestId);
|
||||
using ImRaii.IEndObject endObject = ImRaii.Popup(id);
|
||||
if (!endObject)
|
||||
{
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue