diff options
Diffstat (limited to 'CruUI/ui/window.cpp')
-rw-r--r-- | CruUI/ui/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CruUI/ui/window.cpp b/CruUI/ui/window.cpp index 21528d9d..b20abb61 100644 --- a/CruUI/ui/window.cpp +++ b/CruUI/ui/window.cpp @@ -16,7 +16,7 @@ namespace cru WNDCLASSEX window_class; window_class.cbSize = sizeof(WNDCLASSEX); - window_class.style = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS; + window_class.style = CS_HREDRAW | CS_VREDRAW; window_class.lpfnWndProc = window_proc; window_class.cbClsExtra = 0; window_class.cbWndExtra = 0; |