[EXPLORER_NEW]
authorThomas Faber <thomas.faber@reactos.org>
Sat, 22 Oct 2011 15:27:29 +0000 (15:27 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Sat, 22 Oct 2011 15:27:29 +0000 (15:27 +0000)
- Fix rectangle copypasta in ITrayWindowImpl_RegLoadSettings. Patch by Elton Chung

svn path=/trunk/; revision=54231

reactos/base/shell/explorer-new/traywnd.c

index 5af7cba..61d0d1a 100644 (file)
@@ -644,7 +644,7 @@ static VOID
 ITrayWindowImpl_ResizeWorkArea(IN OUT ITrayWindowImpl *This)
 {
     RECT rcTray,rcWorkArea;
 ITrayWindowImpl_ResizeWorkArea(IN OUT ITrayWindowImpl *This)
 {
     RECT rcTray,rcWorkArea;
-    
+
     /* If monitor has changed then fix the previous monitors work area */
     if(This->PreviousMonitor!=This->Monitor)
     {
     /* If monitor has changed then fix the previous monitors work area */
     if(This->PreviousMonitor!=This->Monitor)
     {
@@ -792,7 +792,7 @@ ITrayWindowImpl_RegLoadSettings(IN OUT ITrayWindowImpl *This)
         rcScreen.left = 0;
         rcScreen.top = 0;
         rcScreen.right = GetSystemMetrics(SM_CXSCREEN);
         rcScreen.left = 0;
         rcScreen.top = 0;
         rcScreen.right = GetSystemMetrics(SM_CXSCREEN);
-        rcScreen.right = GetSystemMetrics(SM_CYSCREEN);
+        rcScreen.bottom = GetSystemMetrics(SM_CYSCREEN);
         ITrayWindowImpl_GetScreenRectFromRect(This,
                                               &rcScreen,
                                               MONITOR_DEFAULTTOPRIMARY);
         ITrayWindowImpl_GetScreenRectFromRect(This,
                                               &rcScreen,
                                               MONITOR_DEFAULTTOPRIMARY);