From 60aaa308bf964a9888b065420837c61a086c18ff Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sat, 16 Jul 2022 04:00:26 -0400 Subject: [PATCH] WiiPane: Trim automatic SD sync checkbox string --- Source/Core/DolphinQt/Settings/WiiPane.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/Settings/WiiPane.cpp b/Source/Core/DolphinQt/Settings/WiiPane.cpp index 9549a4e540..29ff42a0b9 100644 --- a/Source/Core/DolphinQt/Settings/WiiPane.cpp +++ b/Source/Core/DolphinQt/Settings/WiiPane.cpp @@ -193,8 +193,9 @@ void WiiPane::CreateSDCard() ++row; } - m_sync_sd_folder_checkbox = - new QCheckBox(tr("Automatically sync with Folder on emulation start and end")); + m_sync_sd_folder_checkbox = new QCheckBox(tr("Automatically Sync with Folder")); + m_sync_sd_folder_checkbox->setToolTip( + tr("Synchronizes the SD Card with the SD Sync Folder when starting and ending emulation.")); sd_settings_group_layout->addWidget(m_sync_sd_folder_checkbox, row, 0, 1, 2); ++row;