fix icons
This commit is contained in:
parent
056724268e
commit
c087e85e12
2 changed files with 2 additions and 2 deletions
|
|
@ -515,7 +515,7 @@ impl App {
|
||||||
|
|
||||||
nav_model = nav_model.insert(|b| {
|
nav_model = nav_model.insert(|b| {
|
||||||
b.text(fl!("recents"))
|
b.text(fl!("recents"))
|
||||||
.icon(widget::icon::from_name("user-bookmarks-symbolic")) //TODO change icon with a watch icon like gnome recents
|
.icon(widget::icon::from_name("accessories-clock-symbolic"))
|
||||||
.data(Location::Recents)
|
.data(Location::Recents)
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2345,7 +2345,7 @@ impl Tab {
|
||||||
let mut row = widget::row::with_capacity(2)
|
let mut row = widget::row::with_capacity(2)
|
||||||
.align_items(Alignment::Center)
|
.align_items(Alignment::Center)
|
||||||
.spacing(space_xxxs);
|
.spacing(space_xxxs);
|
||||||
row = row.push(widget::icon::from_name("user-bookmarks-symbolic").size(16)); //TODO change with recent icon
|
row = row.push(widget::icon::from_name("accessories-clock-symbolic").size(16));
|
||||||
row = row.push(widget::text::heading(fl!("recents")));
|
row = row.push(widget::text::heading(fl!("recents")));
|
||||||
|
|
||||||
children.push(
|
children.push(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue