mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
Revert [NOTEPAD] Add SBS_SIZEGRIP to status bar CORE-16528
This commit is contained in:
parent
9ef61bb887
commit
34947add79
1 changed files with 3 additions and 3 deletions
|
@ -832,10 +832,10 @@ VOID DoCreateStatusBar(VOID)
|
|||
/* Check if status bar object already exists. */
|
||||
if (Globals.hStatusBar == NULL)
|
||||
{
|
||||
const DWORD style = WS_CHILD | WS_VISIBLE | WS_EX_STATICEDGE | SBS_SIZEGRIP;
|
||||
|
||||
/* Try to create the status bar */
|
||||
Globals.hStatusBar = CreateStatusWindow(style, NULL, Globals.hMainWnd,
|
||||
Globals.hStatusBar = CreateStatusWindow(WS_CHILD | WS_VISIBLE | WS_EX_STATICEDGE,
|
||||
NULL,
|
||||
Globals.hMainWnd,
|
||||
CMD_STATUSBAR_WND_ID);
|
||||
|
||||
if (Globals.hStatusBar == NULL)
|
||||
|
|
Loading…
Reference in a new issue