André Hentschel : shdocvw: Add Resizer control to the iexplore window.
Module: wine Branch: master Commit: e8a766b4bf2e07ccb66d206908204d3710a88b35 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e8a766b4bf2e07ccb66d206908... Author: André Hentschel <nerv(a)dawncrow.de> Date: Tue Dec 14 15:30:44 2010 +0100 shdocvw: Add Resizer control to the iexplore window. --- dlls/shdocvw/iexplore.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/shdocvw/iexplore.c b/dlls/shdocvw/iexplore.c index fb873f5..745cb17 100644 --- a/dlls/shdocvw/iexplore.c +++ b/dlls/shdocvw/iexplore.c @@ -488,7 +488,8 @@ static LRESULT iewnd_OnCreate(HWND hwnd, LPCREATESTRUCTW lpcs) This->menu = create_ie_menu(); - This->status_hwnd = CreateStatusWindowW(CCS_NODIVIDER|WS_CHILD|WS_VISIBLE, NULL, hwnd, IDC_BROWSE_STATUSBAR); + This->status_hwnd = CreateStatusWindowW(WS_VISIBLE|WS_CHILD|SBT_NOBORDERS|CCS_NODIVIDER, + NULL, hwnd, IDC_BROWSE_STATUSBAR); SendMessageW(This->status_hwnd, SB_SIMPLE, TRUE, 0); create_rebar(hwnd);
participants (1)
-
Alexandre Julliard