conf editor bug fix

This commit is contained in:
stax76
2023-10-25 09:35:36 +02:00
parent 0148a71281
commit 37320fb975
5 changed files with 29 additions and 29 deletions

View File

@@ -459,7 +459,7 @@ public partial class ConfWindow : Window, INotifyPropertyChanged
node.IsSelected = false;
foreach (var it in node.Children)
SelectNodeFromSearchText(it);
UnselectNode(it);
}
void ExpandNode(NodeViewModel node)
@@ -467,7 +467,7 @@ public partial class ConfWindow : Window, INotifyPropertyChanged
node.IsExpanded = true;
foreach (var it in node.Children)
SelectNodeFromSearchText(it);
ExpandNode(it);
}
[RelayCommand] void ShowMpvNetSpecificSettings() => SearchControl.Text = "mpv.net";