fix(label): make cell_label is selectable

This commit is contained in:
doryan 2024-08-17 21:35:58 +04:00
parent 5cc92eb8ae
commit cff06ea8b0

View File

@ -70,6 +70,8 @@ pub fn get_cell_data(list_item: &Object) -> (Frequency, Label) {
.and_downcast::<Label>() .and_downcast::<Label>()
.expect("The child has to be a `Label`."); .expect("The child has to be a `Label`.");
cell_label.set_selectable(true);
(cell_value, cell_label) (cell_value, cell_label)
} }