From 1b3ca81efc4032c70f014b53c68942dfdd3e5d6d Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 15 Feb 2025 23:01:53 +1000 Subject: [PATCH] Qt: Fix hotkey search placeholder localisation --- src/duckstation-qt/hotkeysettingswidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duckstation-qt/hotkeysettingswidget.cpp b/src/duckstation-qt/hotkeysettingswidget.cpp index b8a069591..2f9cffa0e 100644 --- a/src/duckstation-qt/hotkeysettingswidget.cpp +++ b/src/duckstation-qt/hotkeysettingswidget.cpp @@ -27,7 +27,7 @@ HotkeySettingsWidget::~HotkeySettingsWidget() = default; HotkeySettingsWidget::Container::Container(QWidget* parent) : QWidget(parent) { m_search = new QLineEdit(this); - m_search->setPlaceholderText(tr("Search...")); + m_search->setPlaceholderText(qApp->translate("HotkeySettingsWidget", "Search...")); m_search->setClearButtonEnabled(true); }