v2.2 (build 668)

* Also fix display of some of the buttons on Windows XP
This commit is contained in:
Pete Batard 2015-05-31 20:10:26 +01:00
parent 2b212c0c88
commit bf967dc39b
3 changed files with 15 additions and 13 deletions

View file

@ -1831,8 +1831,10 @@ void InitDialog(HWND hDlg)
CreateTooltip(GetDlgItem(hDlg, IDC_WINDOWS_TO_GO), lmprintf(MSG_200), -1);
// Set a label for the Advanced Mode and Select Image button for screen readers
SetWindowTextU(GetDlgItem(hDlg, IDC_ADVANCED), lmprintf(MSG_160));
SetWindowTextU(hSelectISO, lmprintf(MSG_165));
if (nWindowsVersion > WINDOWS_XP) {
SetWindowTextU(GetDlgItem(hDlg, IDC_ADVANCED), lmprintf(MSG_160));
SetWindowTextU(hSelectISO, lmprintf(MSG_165));
}
ToggleAdvanced(); // We start in advanced mode => go to basic mode
ToggleToGo();