From e9cd9a2864d6870c9f253f02babcaefbe10f5f7a Mon Sep 17 00:00:00 2001 From: Kamil Jarosz Date: Thu, 19 Sep 2024 13:30:57 +0200 Subject: [PATCH] desktop: Use trash can emoji on remove buttons This replaces the letter x with the trash can emoji, which looks nicer and has clearer semantics. --- desktop/src/gui/dialogs/open_dialog.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/gui/dialogs/open_dialog.rs b/desktop/src/gui/dialogs/open_dialog.rs index 840919ec5..a1738e903 100644 --- a/desktop/src/gui/dialogs/open_dialog.rs +++ b/desktop/src/gui/dialogs/open_dialog.rs @@ -569,7 +569,7 @@ impl OpenDialog { ui.horizontal(|ui| { ui.text_edit_singleline(value); if ui - .button("x") + .button("🗑") .on_hover_text(text(locale, "open-dialog-remove-parameter")) .clicked() {