Skip to content

Commit

Permalink
Fixed contextmenu checkboxes. Settings are now refreshed if the check…
Browse files Browse the repository at this point in the history
…box is activated/deactivated
  • Loading branch information
StefanKert committed Jul 5, 2019
1 parent 10838b8 commit 13eb0fa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/BuildVision.UI/ViewModels/BuildVisionPaneViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,12 @@ public BuildVisionPaneViewModel(
SyncColumnSettings();
};

ControlSettings.PropertyChanged += (sender, e) =>
{
OnControlSettingsChanged();
SyncColumnSettings();
};

if (settingsProvider.Settings.GeneralSettings.FillProjectListOnBuildBegin)
{
Projects.CollectionChanged += (sender, e) =>
Expand Down

0 comments on commit 13eb0fa

Please sign in to comment.