From 7d98461fc6d1cbbff959462a27b6631f2175ed46 Mon Sep 17 00:00:00 2001 From: Pierre GRASSER Date: Thu, 18 Jan 2024 15:44:17 +0100 Subject: [PATCH] Qt: Remove non-printable character from some strings This non-printable character (U+FE0F, VARIATION SELECTOR 16) has been added for seemingly no reason to multiple strings and have polluted Translation Memory on Crowdin for some languages (:eyes:). Let's get rid of it. --- pcsx2-qt/Tools/InputRecording/InputRecordingViewer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2-qt/Tools/InputRecording/InputRecordingViewer.cpp b/pcsx2-qt/Tools/InputRecording/InputRecordingViewer.cpp index 9314564741..6eaee22bc0 100644 --- a/pcsx2-qt/Tools/InputRecording/InputRecordingViewer.cpp +++ b/pcsx2-qt/Tools/InputRecording/InputRecordingViewer.cpp @@ -43,7 +43,7 @@ QTableWidgetItem* InputRecordingViewer::createRowItem(std::tuple butto void InputRecordingViewer::loadTable() { - static const auto headers = QStringList({tr("Left Analog"), tr("Right Analog"), tr("Cross"), tr("Square"), tr("Triangle"), tr("Circle"), tr("L1"), tr("R1"), tr("L2"), tr("R2"), tr("D-Pad Down"), tr("D-Pad Right️"), tr("D-Pad Up️"), tr("D-Pad Left️"), tr("L3"), tr("R3"), tr("Select"), tr("Start")}); + static const auto headers = QStringList({tr("Left Analog"), tr("Right Analog"), tr("Cross"), tr("Square"), tr("Triangle"), tr("Circle"), tr("L1"), tr("R1"), tr("L2"), tr("R2"), tr("D-Pad Down"), tr("D-Pad Right"), tr("D-Pad Up"), tr("D-Pad Left"), tr("L3"), tr("R3"), tr("Select"), tr("Start")}); m_ui.tableWidget->setColumnCount(headers.length()); m_ui.tableWidget->setHorizontalHeaderLabels(headers); @@ -111,4 +111,4 @@ void InputRecordingViewer::closeFile() } } // TODO else error m_ui.actionClose->setEnabled(m_file_open); -} \ No newline at end of file +}