From cd20e11f4ab0e67c4989f2a60830ec62d23250d7 Mon Sep 17 00:00:00 2001 From: "Kirill K. Smirnov" Date: Mon, 18 Jun 2007 14:29:48 +0400 Subject: [PATCH] winhelp: Fix popup window style. --- programs/winhelp/winhelp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/winhelp/winhelp.c b/programs/winhelp/winhelp.c index 8905d6e222..c61b552838 100644 --- a/programs/winhelp/winhelp.c +++ b/programs/winhelp/winhelp.c @@ -214,7 +214,7 @@ static HLPFILE_WINDOWINFO* WINHELP_GetPopupWindowInfo(HLPFILE* hlpfile, HWND wi.origin.x = max(wi.origin.x, 0); wi.style = SW_SHOW; - wi.win_style = WS_POPUPWINDOW; + wi.win_style = WS_POPUP | WS_BORDER; wi.sr_color = wi.sr_color = 0xFFFFFF; return &wi; -- 2.32.0.93.g670b81a890