From 58a09e8701b6da716c3fb8ba3dcafd6beed4d510 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 13:34:32 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20native=20Windows=20UI=20=E2=80=94=20lig?= =?UTF-8?q?ht=20theme,=20centered=20window,=20standard=20chrome?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- windows/App.xaml.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/windows/App.xaml.cs b/windows/App.xaml.cs index 02cb58b..5262408 100644 --- a/windows/App.xaml.cs +++ b/windows/App.xaml.cs @@ -78,21 +78,11 @@ public partial class App : Application if (_popup == null) { _popup = new PopupWindow(); - _popup.Closed += (_, _) => _popup = null; } - PositionPopup(); _popup.Show(); _popup.Activate(); } - private void PositionPopup() - { - if (_popup == null) return; - var workArea = SystemParameters.WorkArea; - _popup.Left = workArea.Right - _popup.Width - 8; - _popup.Top = workArea.Bottom - _popup.Height - 8; - } - public void ScheduleTimer(int seconds) { _timer?.Stop();