From 9b34d50d327d4947254e27a6e9d88b1623d81008 Mon Sep 17 00:00:00 2001 From: F K <54195004+fredjk-gh@users.noreply.github.com> Date: Sun, 4 Dec 2022 09:11:30 -0500 Subject: [PATCH] Disable ShowActivated on notifications to avoid focus stealing (#98) The recently updated avalonia seemed to change behavior in a way that caused notifications to steal focus from the game (often at at inopportune times). Not all users experienced this. --- ObservatoryCore/UI/Views/NotificationView.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ObservatoryCore/UI/Views/NotificationView.axaml.cs b/ObservatoryCore/UI/Views/NotificationView.axaml.cs index b14f51d..7df0f65 100644 --- a/ObservatoryCore/UI/Views/NotificationView.axaml.cs +++ b/ObservatoryCore/UI/Views/NotificationView.axaml.cs @@ -25,10 +25,10 @@ namespace Observatory.UI.Views this.guid = guid; InitializeComponent(); SystemDecorations = SystemDecorations.None; + ShowActivated = false; ShowInTaskbar = false; MakeClickThrough(); //Platform specific, currently windows only. - this.DataContextChanged += NotificationView_DataContextChanged; scale = Properties.Core.Default.NativeNotifyScale / 100.0;