mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:03:12 +00:00
[RAPPS] Use different mutex and title for AppWiz mode (#7350)
The two different modes needs separate mutex and window titles, otherwise you can end up stuck in AppWiz mode.
This commit is contained in:
parent
4f4be5c498
commit
2f83e6a65d
2 changed files with 6 additions and 5 deletions
|
@ -749,8 +749,7 @@ CMainWindow::GetWndClassInfo()
|
|||
HWND
|
||||
CMainWindow::Create()
|
||||
{
|
||||
CStringW szWindowName;
|
||||
szWindowName.LoadStringW(IDS_APPTITLE);
|
||||
const CStringW szWindowName(MAKEINTRESOURCEW(m_bAppwizMode ? IDS_APPWIZ_TITLE : IDS_APPTITLE));
|
||||
|
||||
RECT r = {
|
||||
(SettingsInfo.bSaveWndPos ? SettingsInfo.Left : CW_USEDEFAULT),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue