From 06c4e78fca19849ebe0f76909fac29e47c6bc8f4 Mon Sep 17 00:00:00 2001 From: Thomas Hilscher <thomas.hilscher@gmail.com> Date: Sat, 25 Feb 2023 15:48:00 +0100 Subject: [PATCH] Fixed Control-F Search --- WGneu/Windows/MemberListWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WGneu/Windows/MemberListWindow.xaml.cs b/WGneu/Windows/MemberListWindow.xaml.cs index 4ee6d5d..d70cb02 100644 --- a/WGneu/Windows/MemberListWindow.xaml.cs +++ b/WGneu/Windows/MemberListWindow.xaml.cs @@ -238,7 +238,7 @@ namespace WGneu.Windows private void FocusSearchInput(object sender, RoutedEventArgs e) { - if (!isEditing) + if (!isEditing && !isCreating) { SearchInput.Focus(); SearchInput.SelectAll();