Add enable/disable checkbox to group browser

This commit is contained in:
azakhi
2018-09-06 09:59:09 +03:00
parent ae38197052
commit 1f6cbeec86
7 changed files with 150 additions and 43 deletions

View File

@@ -667,7 +667,8 @@ namespace Filtration.Parser.Services
if (blockGroups.Count(b => !string.IsNullOrEmpty(b.Trim())) > 0)
{
block.BlockGroup = _blockGroupHierarchyBuilder.IntegrateStringListIntoBlockGroupHierarchy(blockGroups);
block.BlockGroup.IsChecked = block.Action == BlockAction.Show;
block.BlockGroup.IsShowChecked = block.Action == BlockAction.Show;
block.BlockGroup.IsEnableChecked = block.Enabled;
}
}