diff --git a/Mystify/ViewModels/MainWindowViewModel.cs b/Mystify/ViewModels/MainWindowViewModel.cs index c2f3ed0..d165719 100644 --- a/Mystify/ViewModels/MainWindowViewModel.cs +++ b/Mystify/ViewModels/MainWindowViewModel.cs @@ -54,11 +54,10 @@ namespace Mystify.ViewModels RaisePropertyChanged(() => Controllables); }); - public ICommand AllocateControllableCommand => - ReactiveCommand.Create(() => - { - if (SelectedControllable != null) - SelectedChannel?.AllocateControllable(SelectedControllable); - }); + public ICommand AllocateControllableCommand => ReactiveCommand.Create(() => + { + if (SelectedControllable != null) + SelectedChannel?.AllocateControllable(SelectedControllable); + }); } }