Author: dreimer
Date: Sat Feb 25 23:02:36 2017
New Revision: 73916
URL: http://svn.reactos.org/svn/reactos?rev=73916&view=rev
Log:
[RAPPS]
Add Gecko Engine which can only be installed once during 1st stage, because someone thought this was a good idea. Now you can get it later, too.
Added:
trunk/reactos/media/rapps/gecko.txt (with props)
Added: trunk/reactos/media/rapps/gecko.txt
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/media/rapps/gecko.txt?rev=…
==============================================================================
--- trunk/reactos/media/rapps/gecko.txt (added)
+++ trunk/reactos/media/rapps/gecko.txt [iso-8859-1] Sat Feb 25 23:02:36 2017
@@ -0,0 +1,16 @@
+[Section]
+Name = Wine Gecko Engine
+Version = 2.40
+License = GPL
+Description = Gecko Engine normally installed on 1st stage setup, but only if internet connection was available at that time. Needed for applications using mshtml.dll.
+Size = 26.7 MiB
+Category = 14
+URLSite =
+URLDownload = https://svn.reactos.org/amine/wine_gecko-2.40-x86.msi
+SHA1 = 8a3adedf3707973d1ed4ac3b2e791486abf814bd
+CDPath = none
+
+[Section.0407]
+Description = Die Gecko Engine, welche normalerweise während des 1st stage Setups installiert wird, aber nur wenn zu diesem Zeitpunkt Internet verfügbar war. Wird für Anwendungen benötigt, die mshtml.dll einsetzen.
+Size = 26,7 MiB
+
Propchange: trunk/reactos/media/rapps/gecko.txt
------------------------------------------------------------------------------
svn:eol-style = CRLF
Author: gadamopoulos
Date: Sat Feb 25 22:54:42 2017
New Revision: 73915
URL: http://svn.reactos.org/svn/reactos?rev=73915&view=rev
Log:
[EXPLORER] -Use the hacky way to paint the start button until BCM_GETIDEALSIZE is also implemented.
Modified:
trunk/reactos/base/shell/explorer/traywnd.cpp
Modified: trunk/reactos/base/shell/explorer/traywnd.cpp
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/traywn…
==============================================================================
--- trunk/reactos/base/shell/explorer/traywnd.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/traywnd.cpp [iso-8859-1] Sat Feb 25 22:54:42 2017
@@ -325,12 +325,16 @@
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);
-
- UpdateSize();
- return;
+ 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;
+ }
}
/* Fall back to the deprecated method on older systems that don't