[EXPLORER] -Use the hacky way to paint the start button until BCM_GETIDEALSIZE is...
authorGiannis Adamopoulos <gadamopoulos@reactos.org>
Sat, 25 Feb 2017 22:54:42 +0000 (22:54 +0000)
committerGiannis Adamopoulos <gadamopoulos@reactos.org>
Sat, 25 Feb 2017 22:54:42 +0000 (22:54 +0000)
svn path=/trunk/; revision=73915

reactos/base/shell/explorer/traywnd.cpp

index 815e532..9dc2ffc 100644 (file)
@@ -325,12 +325,16 @@ Cleanup:
 
             if (SendMessageW(BCM_SETIMAGELIST, 0, (LPARAM) &bil))
             {
 
             if (SendMessageW(BCM_SETIMAGELIST, 0, (LPARAM) &bil))
             {
-                /* We're using the image list, remove the BS_BITMAP style and
-                don't center it horizontally */
-                SetWindowStyle(m_hWnd, BS_BITMAP | BS_RIGHT, 0);
+                SIZE Size = { 0, 0 };
+                if (SendMessageW(BCM_GETIDEALSIZE, 0, (LPARAM) &Size))
+                {
+                    /* We're using the image list, remove the BS_BITMAP style and
+                    don't center it horizontally */
+                    SetWindowStyle(m_hWnd, BS_BITMAP | BS_RIGHT, 0);
 
 
-                UpdateSize();
-                return;
+                    UpdateSize();
+                    return;
+                }
             }
 
             /* Fall back to the deprecated method on older systems that don't
             }
 
             /* Fall back to the deprecated method on older systems that don't