From 59dc3ca409db796ca7cc8fb15ba0fec30b908332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Sat, 16 May 2026 11:57:27 +0200 Subject: [PATCH] Fix ampersand not displaying correctly. Took 14 minutes --- .../src/interface/palette_editor/palette_editor_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/interface/palette_editor/palette_editor_dialog.cpp b/cockatrice/src/interface/palette_editor/palette_editor_dialog.cpp index ef0ca8b34..231896bff 100644 --- a/cockatrice/src/interface/palette_editor/palette_editor_dialog.cpp +++ b/cockatrice/src/interface/palette_editor/palette_editor_dialog.cpp @@ -180,7 +180,7 @@ void PaletteEditorDialog::retranslateUi() resetBtn->setText(tr("Reset")); applyBtn->setText(tr("Apply")); - saveBtn->setText(tr("Save & Apply")); + saveBtn->setText(tr("Save && Apply")); resetBtn->setToolTip(tr("Discard unsaved edits and restore the last saved palette")); applyBtn->setToolTip(tr("Preview this palette without saving to disk")); saveBtn->setToolTip(tr("Write palette-%1.toml and reload the theme").arg(loadedScheme.toLower()));