From 9ab4054452c1f8a50204c6ca505d51fdccce5fc7 Mon Sep 17 00:00:00 2001 From: Andrew Zhu Date: Mon, 17 Jan 2022 01:25:45 -0800 Subject: [PATCH] chore: weird end tab item call? --- PluginUI.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PluginUI.cs b/PluginUI.cs index a5220a4..3f382b6 100644 --- a/PluginUI.cs +++ b/PluginUI.cs @@ -76,7 +76,6 @@ private void DrawSettingsWindow() { bool allNotifs = configuration.AllNotifs; if (ImGui.Checkbox("Notifications: All", ref allNotifs)) configuration.AllNotifs = allNotifs; if (ImGui.IsItemHovered()) ImGui.SetTooltip("Whether or not to receive notifications about all new plots for sale, regardless of world or data center."); - ImGui.EndTabItem(); // chat type XivChatType outputChatType = configuration.ChatType; @@ -90,6 +89,8 @@ private void DrawSettingsWindow() { } ImGui.EndCombo(); } + + ImGui.EndTabItem(); } DrawTabItemForDistrict("Mist", configuration.Mist); DrawTabItemForDistrict("The Lavender Beds", configuration.LavenderBeds);