mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
- Fix Desktop hang if no windows open.
svn path=/trunk/; revision=72194
This commit is contained in:
@@ -312,7 +312,7 @@ void PrepareWindow(VOID)
|
||||
ResizeAndCenter(switchdialog, totalW, totalH);
|
||||
}
|
||||
|
||||
void ProcessHotKey(VOID)
|
||||
BOOL ProcessHotKey(VOID)
|
||||
{
|
||||
if (!isOpen)
|
||||
{
|
||||
@@ -320,7 +320,7 @@ void ProcessHotKey(VOID)
|
||||
EnumWindowsZOrder(EnumerateCallback, 0);
|
||||
|
||||
if (windowCount < 2)
|
||||
return;
|
||||
return FALSE;
|
||||
|
||||
selectedWindow = 1;
|
||||
|
||||
@@ -335,6 +335,7 @@ void ProcessHotKey(VOID)
|
||||
selectedWindow = (selectedWindow + 1)%windowCount;
|
||||
InvalidateRect(switchdialog, NULL, TRUE);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
LRESULT WINAPI DoAppSwitch( WPARAM wParam, LPARAM lParam )
|
||||
@@ -359,7 +360,7 @@ LRESULT WINAPI DoAppSwitch( WPARAM wParam, LPARAM lParam )
|
||||
case VK_TAB:
|
||||
if( !CreateSwitcherWindow(User32Instance) ) goto Exit;
|
||||
if( !GetDialogFont() ) goto Exit;
|
||||
ProcessHotKey();
|
||||
if( !ProcessHotKey() ) goto Exit;
|
||||
break;
|
||||
|
||||
case VK_ESCAPE:
|
||||
|
||||
Reference in New Issue
Block a user