From a46d0bc2c344d68c38b447600f38fe40633ace5d Mon Sep 17 00:00:00 2001 From: goaaats Date: Thu, 28 Mar 2024 13:51:25 +0100 Subject: [PATCH] bump default notification duration to 7 seconds --- .../ImGuiNotification/Internal/NotificationConstants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/ImGuiNotification/Internal/NotificationConstants.cs b/Dalamud/Interface/ImGuiNotification/Internal/NotificationConstants.cs index 18bb57118..7811c1aaa 100644 --- a/Dalamud/Interface/ImGuiNotification/Internal/NotificationConstants.cs +++ b/Dalamud/Interface/ImGuiNotification/Internal/NotificationConstants.cs @@ -56,7 +56,7 @@ internal static class NotificationConstants public const float ProgressWaveLoopMaxColorTimeRatio = 0.7f; /// Default duration of the notification. - public static readonly TimeSpan DefaultDuration = TimeSpan.FromSeconds(3); + public static readonly TimeSpan DefaultDuration = TimeSpan.FromSeconds(7); /// Duration of show animation. public static readonly TimeSpan ShowAnimationDuration = TimeSpan.FromMilliseconds(300);