fix(recents): use correct icon

This commit is contained in:
Vukašin Vojinović 2024-09-12 14:09:36 +02:00 committed by Jeremy Soller
parent 329c0d3d4e
commit f41730978c
3 changed files with 3 additions and 3 deletions

View file

@ -605,7 +605,7 @@ impl App {
nav_model = nav_model.insert(|b| {
b.text(fl!("recents"))
.icon(widget::icon::from_name("accessories-clock-symbolic"))
.icon(widget::icon::from_name("document-open-recent-symbolic"))
.data(Location::Recents)
});

View file

@ -421,7 +421,7 @@ impl App {
nav_model = nav_model.insert(|b| {
b.text(fl!("recents"))
.icon(widget::icon::from_name("accessories-clock-symbolic"))
.icon(widget::icon::from_name("document-open-recent-symbolic"))
.data(Location::Recents)
});

View file

@ -2549,7 +2549,7 @@ impl Tab {
let mut row = widget::row::with_capacity(2)
.align_items(Alignment::Center)
.spacing(space_xxxs);
row = row.push(widget::icon::from_name("accessories-clock-symbolic").size(16));
row = row.push(widget::icon::from_name("document-open-recent-symbolic").size(16));
row = row.push(widget::text::heading(fl!("recents")));
children.push(