Skip to content

Commit adfc768

Browse files
authored
Fix: Incorrect tooltip on mouseover due to bad translation key (fix #1635) (#1637)
The commit 9ea5ccc introduced this bug by creating a translation key named "DISABLE_SCREEN_PROTECTION_WARNING" but used the key "DISABLE_SCREEN_PROTECTION_HELP" into the installation wizard.
1 parent d8cd2cf commit adfc768

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Setup/Wizard.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
447447
// make the help button adjacent to the checkbox
448448
MakeControlsContiguous(hwndDlg, IDC_DISABLE_MEMORY_PROTECTION, IDC_DISABLE_MEMORY_PROTECTION_HELP);
449449

450-
hDisableScreenProtectionTooltipWnd = CreateToolTip (IDC_DISABLE_SCREEN_PROTECTION, hwndDlg, "DISABLE_SCREEN_PROTECTION_HELP");
450+
hDisableScreenProtectionTooltipWnd = CreateToolTip (IDC_DISABLE_SCREEN_PROTECTION, hwndDlg, "DISABLE_SCREEN_PROTECTION_WARNING");
451451
// make the help button adjacent to the checkbox
452452
AccommodateCheckBoxTextWidth(hwndDlg, IDC_DISABLE_SCREEN_PROTECTION);
453453

0 commit comments

Comments
 (0)