Skip to content

Commit

Permalink
chore: weird end tab item call?
Browse files Browse the repository at this point in the history
  • Loading branch information
zhudotexe committed Jan 17, 2022
1 parent 1960f9f commit 9ab4054
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion PluginUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -90,6 +89,8 @@ private void DrawSettingsWindow() {
}
ImGui.EndCombo();
}

ImGui.EndTabItem();
}
DrawTabItemForDistrict("Mist", configuration.Mist);
DrawTabItemForDistrict("The Lavender Beds", configuration.LavenderBeds);
Expand Down

0 comments on commit 9ab4054

Please sign in to comment.