From e78c206856b35172196a171b9f5c6b2f66bda393 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 10 Aug 2011 15:56:27 +0200 Subject: =?UTF-8?q?updated=20for=20version=207.3.275=20Problem:=20=20=20?= =?UTF-8?q?=20MS-Windows:=20When=20using=20a=20black=20background=20some?= =?UTF-8?q?=20screen=20updates=20=20=20=20=20=20=20=20=20=20=20=20=20cause?= =?UTF-8?q?=20the=20window=20to=20flicker.=20Solution:=20=20=20Add=20WS=5F?= =?UTF-8?q?CLIPCHILDREN=20to=20CreateWindow().=20=20(Ren=C3=A9=20Aguirre)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gui_w32.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/gui_w32.c') diff --git a/src/gui_w32.c b/src/gui_w32.c index e4d25704f..0966afe40 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -1379,7 +1379,8 @@ gui_mch_init(void) s_hwnd = CreateWindowEx( WS_EX_MDICHILD, szVimWndClass, "Vim MSWindows GUI", - WS_OVERLAPPEDWINDOW | WS_CHILD | WS_CLIPSIBLINGS | 0xC000, + WS_OVERLAPPEDWINDOW | WS_CHILD + | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | 0xC000, gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x, gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y, 100, /* Any value will do */ @@ -1410,7 +1411,8 @@ gui_mch_init(void) * titlebar, it will be reparented below. */ s_hwnd = CreateWindow( szVimWndClass, "Vim MSWindows GUI", - win_socket_id == 0 ? WS_OVERLAPPEDWINDOW : WS_POPUP, + (win_socket_id == 0 ? WS_OVERLAPPEDWINDOW : WS_POPUP) + | WS_CLIPSIBLINGS | WS_CLIPCHILDREN, gui_win_x == -1 ? CW_USEDEFAULT : gui_win_x, gui_win_y == -1 ? CW_USEDEFAULT : gui_win_y, 100, /* Any value will do */ -- cgit v1.2.3