From f41730978c05458bdf935965a2067c04f222dfaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vuka=C5=A1in=20Vojinovi=C4=87?= Date: Thu, 12 Sep 2024 14:09:36 +0200 Subject: [PATCH] fix(recents): use correct icon --- src/app.rs | 2 +- src/dialog.rs | 2 +- src/tab.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app.rs b/src/app.rs index 1f234ca9..71d5d540 100644 --- a/src/app.rs +++ b/src/app.rs @@ -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) }); diff --git a/src/dialog.rs b/src/dialog.rs index 0d94e47e..64ee627c 100644 --- a/src/dialog.rs +++ b/src/dialog.rs @@ -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) }); diff --git a/src/tab.rs b/src/tab.rs index 70a50a0e..e4a0463f 100644 --- a/src/tab.rs +++ b/src/tab.rs @@ -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(