Qt: Add tooltips to memcard checkbox options.

This commit is contained in:
lightningterror 2022-12-05 05:35:58 +01:00
parent 7e939b7535
commit 80aed98e97
1 changed files with 6 additions and 0 deletions

View File

@ -70,6 +70,12 @@ MemoryCardSettingsWidget::MemoryCardSettingsWidget(SettingsDialog* dialog, QWidg
connect(m_ui.deleteCard, &QPushButton::clicked, this, &MemoryCardSettingsWidget::deleteCard);
refresh();
dialog->registerWidgetHelp(m_ui.autoEject, tr("Auto-eject memory cards when loading save states"), tr("Checked"),
tr("Avoids broken memory card saves. May not work with some games such as Guitar Hero."));
dialog->registerWidgetHelp(m_ui.automaticManagement, tr("Automatically manage saves based on running game"), tr("Checked"),
tr("(Folder type only / Card size: Auto) Loads only the relevant booted game saves, ignoring others. Avoids running out of space for saves."));
}
MemoryCardSettingsWidget::~MemoryCardSettingsWidget() = default;