merge stable version #2

Merged
doryan merged 97 commits from experimental into main 2024-08-28 18:54:00 +03:00
Showing only changes of commit cff06ea8b0 - Show all commits

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)
} }