sounds to default off removed old notifcations panel with unused pair panel

This commit is contained in:
choco
2025-10-11 23:08:29 +02:00
parent 3936cbd439
commit a7475a7007
2 changed files with 6 additions and 32 deletions

View File

@@ -2331,21 +2331,7 @@ public class SettingsUi : WindowMediatorSubscriberBase
_uiShared.ColoredSeparator(UIColors.Get("LightlessPurple"), 1.5f);
ImGui.TreePop();
}
ImGui.Separator();
ImGui.Dummy(new Vector2(10));
_uiShared.BigText("Notifications");
if (_uiShared.MediumTreeNode("Display", UIColors.Get("LightlessPurple")))
{
_uiShared.DrawHelpText(
"Notification settings have been moved to the 'Enhanced Notifications' tab for better organization. You can configure where all notifications appear from there.");
_uiShared.ColoredSeparator(UIColors.Get("LightlessPurple"), 1.5f);
ImGui.TreePop();
}
ImGui.Separator();
}
@@ -3996,18 +3982,6 @@ public class SettingsUi : WindowMediatorSubscriberBase
ImGui.TreePop();
}
// Pairing Request Notifications Section
if (_uiShared.MediumTreeNode("Pairing Request Notifications", UIColors.Get("LightlessBlue")))
{
UiSharedService.ColorTextWrapped(
"Pairing requests always show as interactive notifications with Accept/Decline buttons. Configure the sound in the Sound Settings table above.",
ImGuiColors.DalamudGrey);
ImGuiHelpers.ScaledDummy(3);
_uiShared.ColoredSeparator(UIColors.Get("LightlessBlue"), 1.5f);
ImGui.TreePop();
}
if (_uiShared.MediumTreeNode("System Notifications", UIColors.Get("LightlessYellow")))
{
var disableOptionalPluginWarnings = _configService.Current.DisableOptionalPluginWarnings;