Commit add180dd authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

riched32: Added class style to process double click events.

parent 438d8e1c
...@@ -56,7 +56,7 @@ static BOOL RICHED32_Register(void) ...@@ -56,7 +56,7 @@ static BOOL RICHED32_Register(void)
WNDCLASSA wndClass; WNDCLASSA wndClass;
ZeroMemory(&wndClass, sizeof(WNDCLASSA)); ZeroMemory(&wndClass, sizeof(WNDCLASSA));
wndClass.style = CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS; wndClass.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
wndClass.lpfnWndProc = RichEdit10ANSIWndProc; wndClass.lpfnWndProc = RichEdit10ANSIWndProc;
wndClass.cbClsExtra = 0; wndClass.cbClsExtra = 0;
wndClass.cbWndExtra = 4; wndClass.cbWndExtra = 4;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment