diff --git a/DownloadTask.cs b/DownloadTask.cs index 042741f..b79d069 100644 --- a/DownloadTask.cs +++ b/DownloadTask.cs @@ -1,4 +1,3 @@ -using System.Collections.Concurrent; using System.Diagnostics; using System.Net.Http.Headers; using System.Text; diff --git a/Ui/NotificationProgressManager.cs b/Ui/NotificationProgressManager.cs index 897e884..70cc227 100644 --- a/Ui/NotificationProgressManager.cs +++ b/Ui/NotificationProgressManager.cs @@ -1,7 +1,6 @@ using Dalamud.Interface.ImGuiNotification; using Dalamud.Interface.Internal.Notifications; using Dalamud.Plugin.Services; -using Heliosphere.Util; namespace Heliosphere.Ui; diff --git a/Ui/Tabs/Settings.cs b/Ui/Tabs/Settings.cs index dd0703e..040a03e 100644 --- a/Ui/Tabs/Settings.cs +++ b/Ui/Tabs/Settings.cs @@ -31,6 +31,7 @@ internal void Draw() { ImGuiHelper.Help("Shows fake mod downloads so you can position the status window where you like."); var anyChanged = false; + anyChanged |= ImGui.Checkbox("Use Dalamud notifications for download progress", ref this.Plugin.Config.UseNotificationProgress); anyChanged |= ImGui.Checkbox("Auto-update mods on login", ref this.Plugin.Config.AutoUpdate); anyChanged |= ImGui.Checkbox("Include tags by default", ref this.Plugin.Config.IncludeTags); anyChanged |= ImGui.Checkbox("Open mods in Penumbra after fresh install", ref this.Plugin.Config.OpenPenumbraAfterInstall);