From a2dfe1c1626b14421be3b780f733ab15a97845a7 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Fri, 20 Apr 2012 14:47:15 +0000 Subject: [PATCH] Ecore_Win32: fix ecore_win32_window_override_new() behavior SVN revision: 70365 --- legacy/ecore/src/lib/ecore_win32/ecore_win32_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/ecore/src/lib/ecore_win32/ecore_win32_window.c b/legacy/ecore/src/lib/ecore_win32/ecore_win32_window.c index 8cb3caa6da..36f8a86047 100644 --- a/legacy/ecore/src/lib/ecore_win32/ecore_win32_window.c +++ b/legacy/ecore/src/lib/ecore_win32/ecore_win32_window.c @@ -217,7 +217,7 @@ ecore_win32_window_override_new(Ecore_Win32_Window *parent, return ecore_win32_window_internal_new(parent, x, y, width, height, - WS_POPUP); + WS_POPUP & ~(WS_CAPTION | WS_THICKFRAME)); } /**