From 8b51af1632aff9aafd54ed3593b6e904a32a3a27 Mon Sep 17 00:00:00 2001 From: leyoda Date: Fri, 24 Apr 2026 07:48:53 +0200 Subject: [PATCH] yoda: use pencil-symbolic for the Rename toolbar button document-edit-symbolic isn't in the Cosmic theme (checked Cosmic, Pop, Adwaita, WhiteSur-dark ship lists) so it rendered empty. The Cosmic theme ships pencil-symbolic which matches the edit/rename semantics and is guaranteed to resolve through the current icon theme chain. --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index ead588b..5c6a491 100644 --- a/src/app.rs +++ b/src/app.rs @@ -6542,7 +6542,7 @@ impl Application for App { let toolbar = widget::row::with_children(vec![ tb_btn("folder-new-symbolic", fl!("new-folder"), Action::NewFolder.message(None), true).into(), - tb_btn("document-edit-symbolic", fl!("rename"), + tb_btn("pencil-symbolic", fl!("rename"), Action::Rename.message(None), true).into(), tb_btn("edit-delete-symbolic", fl!("delete"), Action::Delete.message(None), true).into(),