Qt: Fix hotkey search placeholder localisation
Some checks are pending
Automated Builds / 💻 Windows (push) Waiting to run
Automated Builds / 🐧 Linux AppImage (push) Waiting to run
Automated Builds / 📦 Linux Flatpak (push) Waiting to run
Automated Builds / 🍎 MacOS (push) Waiting to run
Automated Builds / 📤 Create Release (push) Blocked by required conditions

This commit is contained in:
Stenzek 2025-02-15 23:01:53 +10:00
parent 369f62318f
commit 1b3ca81efc
No known key found for this signature in database

View File

@ -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);
}