[fix]: Again, more icons....
Some checks failed
/ clippy (push) Failing after 7m9s
/ test (push) Has been cancelled

This commit is contained in:
Chris Cochrun 2026-05-05 11:06:10 -05:00
parent 72767336ab
commit 5f5e654faa
2 changed files with 3 additions and 5 deletions

View file

@ -558,9 +558,7 @@ impl cosmic::Application for App {
.symbolic(true)
.icon()
} else {
icon::from_path("./res/icons/edit.svg".into())
.symbolic(true)
.icon()
icon::from_name("edit-symbolic").icon()
})
.center_y(Length::Fill),
text::body(if self.editor_mode.is_some() {

View file

@ -661,9 +661,9 @@ impl<'a> Library {
row = row.push(
icon::from_name({
if self.library_open == Some(model.kind) {
"arrow-up"
"pan-up-symbolic"
} else {
"arrow-down"
"pan-down-symbolic"
}
})
.size(20),