From ef5e77017fa7003e0085374883c9da9dc8314367 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Tue, 31 Jan 2023 17:09:44 +0100 Subject: [PATCH] fix display of error notification --- MareSynchronos/UI/SettingsUi.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MareSynchronos/UI/SettingsUi.cs b/MareSynchronos/UI/SettingsUi.cs index 72416dd..fd34d81 100644 --- a/MareSynchronos/UI/SettingsUi.cs +++ b/MareSynchronos/UI/SettingsUi.cs @@ -531,7 +531,7 @@ public class SettingsUi : Window, IDisposable + Environment.NewLine + "'Toast' will show Warning toast notifications in the bottom right corner" + Environment.NewLine + "'Both' will show chat as well as the toast notification"); - if (ImGui.BeginCombo("Error Notification Display", warnNotifLocation.ToString())) + if (ImGui.BeginCombo("Error Notification Display", errorNotifLocation.ToString())) { foreach (var item in (NotificationLocation[])Enum.GetValues(typeof(NotificationLocation))) {