Skip to content

Commit

Permalink
feat: add toggle for notification progress
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-is-cute committed Mar 20, 2024
1 parent 9d1c344 commit 8ec52f6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion DownloadTask.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Net.Http.Headers;
using System.Text;
Expand Down
1 change: 0 additions & 1 deletion Ui/NotificationProgressManager.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using Dalamud.Interface.ImGuiNotification;
using Dalamud.Interface.Internal.Notifications;
using Dalamud.Plugin.Services;
using Heliosphere.Util;

namespace Heliosphere.Ui;

Expand Down
1 change: 1 addition & 0 deletions Ui/Tabs/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8ec52f6

Please sign in to comment.