mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
border for address bar
svn path=/trunk/; revision=13362
This commit is contained in:
parent
b3f22aba55
commit
5f08703823
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ MainFrameBase::MainFrameBase(HWND hwnd)
|
||||||
DrawText(canvas, TEXT("My"), -1, &rect, DT_SINGLELINE|DT_NOPREFIX|DT_CALCRECT);
|
DrawText(canvas, TEXT("My"), -1, &rect, DT_SINGLELINE|DT_NOPREFIX|DT_CALCRECT);
|
||||||
HFONT hfont = GetStockFont(DEFAULT_GUI_FONT);
|
HFONT hfont = GetStockFont(DEFAULT_GUI_FONT);
|
||||||
|
|
||||||
_haddressedit = CreateWindow(TEXT("EDIT"), NULL, WS_CHILD|WS_VISIBLE, 0, 0, 0, rect.bottom,
|
_haddressedit = CreateWindow(TEXT("EDIT"), NULL, WS_CHILD|WS_VISIBLE|WS_BORDER, 0, 0, 0, rect.bottom,
|
||||||
hwnd, (HMENU)IDW_ADDRESSBAR, g_hInstance, 0);
|
hwnd, (HMENU)IDW_ADDRESSBAR, g_hInstance, 0);
|
||||||
SetWindowFont(_haddressedit, hfont, FALSE);
|
SetWindowFont(_haddressedit, hfont, FALSE);
|
||||||
new EditController(_haddressedit);
|
new EditController(_haddressedit);
|
||||||
|
|
Loading…
Reference in a new issue