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.
This commit is contained in:
Kamil Jarosz 2024-09-19 13:30:57 +02:00 committed by Lord-McSweeney
parent 309d600c6d
commit e9cd9a2864
1 changed files with 1 additions and 1 deletions

View File

@ -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()
{