Before font remake

This commit is contained in:
2026-07-31 23:03:40 +03:00
parent 432c890166
commit b883600abf
5 changed files with 24 additions and 12 deletions
+2
View File
@@ -308,6 +308,7 @@ impl DictionaryState {
}
fn words_list(&self) -> iced::Element<'_, DictionaryMessage> {
let time = Instant::now();
let mut col = Column::new().width(Length::Fill);
let mut range = (0..self.include_map.len()).collect::<Vec<_>>();
@@ -389,6 +390,7 @@ impl DictionaryState {
col = col.push(line);
}
println!("Words rendering time: {:?}", time.elapsed());
scrollable(col).height(Length::Fill).into()
}