From 35a0cfdcbd3f9d5b42b57ae533c84a0ec2ef9b88 Mon Sep 17 00:00:00 2001 From: Maximilian Dorn Date: Wed, 1 Mar 2023 20:53:14 +0100 Subject: [PATCH] Update position when window is shown (#107) --- ObservatoryCore/UI/Views/NotificationView.axaml.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ObservatoryCore/UI/Views/NotificationView.axaml.cs b/ObservatoryCore/UI/Views/NotificationView.axaml.cs index 6fc11da..e29fe15 100644 --- a/ObservatoryCore/UI/Views/NotificationView.axaml.cs +++ b/ObservatoryCore/UI/Views/NotificationView.axaml.cs @@ -72,6 +72,18 @@ namespace Observatory.UI.Views } } + public override void Show() + { + base.Show(); + + // Refresh the position when the window is opened (required + // on Linux to show the notification in the right position) + if (DataContext is NotificationViewModel nvm) + { + AdjustPosition(nvm.Notification.XPos / 100, nvm.Notification.YPos / 100); + } + } + private void NotificationView_DataContextChanged(object sender, EventArgs e) { var notification = ((NotificationViewModel)DataContext).Notification;