Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeRanger committed Mar 10, 2024
1 parent 6f12c46 commit 1dc24fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ActiveDirectoryQuerier/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public sealed class MainWindowViewModel : INotifyPropertyChanged
private AppConsole _activeDirectoryInfoOutput; // Pieter TODO
private Command? _selectedComboBoxCommand;
private ObservableCollection<Button>? _buttons;
private object _optionsSelectedComboBoxItem;

// [[ Other fields ]] ----------------------------------------------------------- //

Expand All @@ -54,7 +53,7 @@ public bool EditingEnabled
get => _editingEnabled;
set {
_editingEnabled = value;
OnPropertyChanged("EditingEnabled");
OnPropertyChanged(nameof(EditingEnabled));
}
}

Expand Down

0 comments on commit 1dc24fa

Please sign in to comment.