diff --git "a/dll/win32/comctl32/commctrl.c" "b/dll/win32/comctl32/commctrl.c" index f85282413e9..2d02f7ca8ce 100644 --- "a/dll/win32/comctl32/commctrl.c" +++ "b/dll/win32/comctl32/commctrl.c" @@ -686,7 +686,11 @@ void WINAPI DrawStatusTextW (HDC hdc, LPCRECT lprc, LPCWSTR text, UINT style) border = 0; oldbkcolor = SetBkColor (hdc, comctl32_color.clrBtnFace); +#ifdef __REACTOS__ + DrawEdge (hdc, &r, border, BF_RECT|BF_ADJUST); +#else DrawEdge (hdc, &r, border, BF_MIDDLE|BF_RECT|BF_ADJUST); +#endif /* now draw text */ if (text) {