mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 02:15:43 +00:00
[MSPAINT] Add Static Edge to toolbars
- Add WS_EX_STATICEDGE to paletteWindow. - Remove CCS_NODIVIDER from toolbar. CORE-18867
This commit is contained in:
parent
868c7c4d53
commit
d40de8f47c
2 changed files with 2 additions and 2 deletions
|
@ -218,7 +218,7 @@ _tWinMain (HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPTSTR lpszArgument
|
|||
|
||||
/* creating the palette child window */
|
||||
RECT paletteWindowPos = {56, 9, 56 + 255, 9 + 32};
|
||||
paletteWindow.Create(hwnd, paletteWindowPos, NULL, WS_CHILD | WS_VISIBLE);
|
||||
paletteWindow.Create(hwnd, paletteWindowPos, NULL, WS_CHILD | WS_VISIBLE, WS_EX_STATICEDGE);
|
||||
|
||||
// creating the canvas
|
||||
RECT canvasWindowPos = {0, 0, 0 + 500, 0 + 500};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue