Module: wine Branch: master Commit: ae2794eac9ed621af01b41b07d241048ec69ae63 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ae2794eac9ed621af01b41b07d...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Sun Aug 2 23:53:27 2015 +0300
comdlg32: Remove browser border for common item dialog.
---
dlls/comdlg32/itemdlg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/comdlg32/itemdlg.c b/dlls/comdlg32/itemdlg.c index b5093b8..99448eb 100644 --- a/dlls/comdlg32/itemdlg.c +++ b/dlls/comdlg32/itemdlg.c @@ -1418,7 +1418,7 @@ static HRESULT init_explorerbrowser(FileDialogImpl *This) return hr; }
- IExplorerBrowser_SetOptions(This->peb, EBO_SHOWFRAMES); + IExplorerBrowser_SetOptions(This->peb, EBO_SHOWFRAMES | EBO_NOBORDER);
hr = IExplorerBrowser_Initialize(This->peb, This->dlg_hwnd, &rc, NULL); if(FAILED(hr))