[fix:] window focus

This commit is contained in:
2026-04-28 11:00:51 +02:00
parent 4a9f9a1ff0
commit c5aabc2a02
+2
View File
@@ -1,4 +1,5 @@
using System;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using Avalonia.Controls;
@@ -45,6 +46,7 @@ public partial class NamingWindow : Window
if (parent != null)
wind.ShowDialog(parent);
else wind.Show();
wind.Focus();
return tcs.Task;
}