Qt: Add a reminder to New Input Profile dialog

This commit is contained in:
kamfretoz 2023-07-15 12:52:24 +07:00 committed by Connor McLaughlin
parent ba3b43c66c
commit fbbec480af
1 changed files with 4 additions and 1 deletions

View File

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