mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[USERINIT] LiveCD: Set UI language (#7069)
The LiveCD start dialog was not localized. JIRA issue: N/A - Just call SetThreadLocale after InitializeDefaultUserLocale call.
This commit is contained in:
parent
caf117d496
commit
edf6b805a7
1 changed files with 3 additions and 0 deletions
|
@ -715,6 +715,9 @@ LocaleDlgProc(
|
|||
/* Store the locale settings in the registry */
|
||||
InitializeDefaultUserLocale(&NewLcid);
|
||||
|
||||
/* Set UI language for this thread */
|
||||
SetThreadLocale(NewLcid);
|
||||
|
||||
SetKeyboardLayout(GetDlgItem(hwndDlg, IDC_LAYOUTLIST));
|
||||
|
||||
pState->NextPage = STARTPAGE;
|
||||
|
|
Loading…
Reference in a new issue