Skip to content

Commit 6729885

Browse files
committed
#59 solved - SelectionView CheckBox Type problem hotfix
1 parent 4d32d63 commit 6729885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InputKit/Shared/Controls/SelectionView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public IList SelectedItems
162162
{
163163
get
164164
{
165-
return this.Children.Where(w => (w is ISelection) && (w as ISelection).IsSelected)?.ToList();
165+
return this.Children.Where(w => (w is ISelection) && (w as ISelection).IsSelected)?.Select(s => (s as ISelection).Value).ToList();
166166
}
167167
set
168168
{

0 commit comments

Comments
 (0)