Author: jimtabor Date: Thu Jun 9 02:50:13 2016 New Revision: 71598
URL: http://svn.reactos.org/svn/reactos?rev=71598&view=rev Log: [User32] - Patch by Jared Smudde : Set text background the same color as the rectangle. - Adapted by Hermès Bélusca-Maïto. Themes, see CORE-11364.
Modified: trunk/reactos/win32ss/user/user32/controls/appswitch.c
Modified: trunk/reactos/win32ss/user/user32/controls/appswitch.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/user32/control... ============================================================================== --- trunk/reactos/win32ss/user/user32/controls/appswitch.c [iso-8859-1] (original) +++ trunk/reactos/win32ss/user/user32/controls/appswitch.c [iso-8859-1] Thu Jun 9 02:50:13 2016 @@ -238,7 +238,7 @@
dcFont = SelectObject(dialogDC, dialogFont); SetTextColor(dialogDC, GetSysColor(COLOR_BTNTEXT)); - SetBkColor(dialogDC, GetSysColor(COLOR_BTNFACE)); + SetBkMode(dialogDC, TRANSPARENT);
textRC.top = itemsH; textRC.left = 8;