From 06247b49afcd1e9ce6b885753c8d93bf80ec7a73 Mon Sep 17 00:00:00 2001 From: Alexander Shishkov Date: Mon, 6 Feb 2012 08:13:11 +0000 Subject: [PATCH] fixed issue #1243 --- modules/highgui/src/window_w32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/highgui/src/window_w32.cpp b/modules/highgui/src/window_w32.cpp index 4b230b76a..37a01773f 100644 --- a/modules/highgui/src/window_w32.cpp +++ b/modules/highgui/src/window_w32.cpp @@ -232,7 +232,7 @@ CV_IMPL int cvInitSystem( int, char** ) // Register the class WNDCLASS wndc; - wndc.style = CS_OWNDC | CS_VREDRAW | CS_HREDRAW; + wndc.style = CS_OWNDC | CS_VREDRAW | CS_HREDRAW | CS_DBLCLKS; wndc.lpfnWndProc = WindowProc; wndc.cbClsExtra = 0; wndc.cbWndExtra = 0;