Allow only one selection in person screen

This commit is contained in:
Elias Projahn 2020-10-17 11:34:34 +02:00
parent 9a9a181739
commit 026880739c
2 changed files with 6 additions and 0 deletions

View file

@ -87,4 +87,8 @@ where
pub fn invalidate_filter(&self) {
self.widget.invalidate_filter();
}
pub fn clear_selection(&self) {
self.widget.unselect_all();
}
}