[NOTEPAD] Add SBS_SIZEGRIP to status bar CORE-16528

This commit is contained in:
Katayama Hirofumi MZ 2019-11-22 09:26:01 +09:00
parent 382675fc0d
commit 1f2d4a78a1

View file

@ -832,10 +832,10 @@ VOID DoCreateStatusBar(VOID)
/* Check if status bar object already exists. */ /* Check if status bar object already exists. */
if (Globals.hStatusBar == NULL) if (Globals.hStatusBar == NULL)
{ {
const DWORD style = WS_CHILD | WS_VISIBLE | WS_EX_STATICEDGE | SBS_SIZEGRIP;
/* Try to create the status bar */ /* Try to create the status bar */
Globals.hStatusBar = CreateStatusWindow(WS_CHILD | WS_VISIBLE | WS_EX_STATICEDGE, Globals.hStatusBar = CreateStatusWindow(style, NULL, Globals.hMainWnd,
NULL,
Globals.hMainWnd,
CMD_STATUSBAR_WND_ID); CMD_STATUSBAR_WND_ID);
if (Globals.hStatusBar == NULL) if (Globals.hStatusBar == NULL)