diff --git a/mozilla/widget/src/windows/nsWindow.cpp b/mozilla/widget/src/windows/nsWindow.cpp index 845a47f797b..ad89fde21b7 100644 --- a/mozilla/widget/src/windows/nsWindow.cpp +++ b/mozilla/widget/src/windows/nsWindow.cpp @@ -1514,7 +1514,8 @@ LPCTSTR nsWindow::WindowClass() if (!nsWindow::sIsRegistered) { WNDCLASS wc; - wc.style = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS; + // wc.style = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS; + wc.style = CS_DBLCLKS; wc.lpfnWndProc = ::DefWindowProc; wc.cbClsExtra = 0; wc.cbWndExtra = 0;