From fbbec480afd3cd096b7a862ecf2b6e12d7be26a5 Mon Sep 17 00:00:00 2001 From: kamfretoz <14798312+kamfretoz@users.noreply.github.com> Date: Sat, 15 Jul 2023 12:52:24 +0700 Subject: [PATCH] Qt: Add a reminder to New Input Profile dialog --- pcsx2-qt/Settings/ControllerSettingsDialog.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pcsx2-qt/Settings/ControllerSettingsDialog.cpp b/pcsx2-qt/Settings/ControllerSettingsDialog.cpp index 3fefc5b356..a42c32b711 100644 --- a/pcsx2-qt/Settings/ControllerSettingsDialog.cpp +++ b/pcsx2-qt/Settings/ControllerSettingsDialog.cpp @@ -101,7 +101,10 @@ void ControllerSettingsDialog::onCurrentProfileChanged(int index) void ControllerSettingsDialog::onNewProfileClicked() { - const QString profile_name(QInputDialog::getText(this, tr("Create Input Profile"), tr("Enter the name for the new input profile:"))); + const QString profile_name(QInputDialog::getText(this, tr("Create Input Profile"), + tr("Custom input profiles are used to override the Shared input profile for specific games.\n" + "To apply a custom input profile to a game, go to its Game Properties, then change the 'Input Profile' on the Summary tab.\n\n" + "Enter the name for the new input profile:"))); if (profile_name.isEmpty()) return;