diff options
Diffstat (limited to 'win32/ScintillaWin.cxx')
| -rw-r--r-- | win32/ScintillaWin.cxx | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index c16da8fdb..a3c141aff 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -737,6 +737,13 @@ sptr_t ScintillaWin::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam  			break;  		case WM_MOUSEWHEEL: +			// if autocomplete list active then send mousewheel message to it +			if (ac.Active()) { +				HWND hWnd = reinterpret_cast<HWND>(ac.lb->GetID()); +				::SendMessage(hWnd, iMessage, wParam, lParam); +				break; +			} +			  			// Don't handle datazoom.  			// (A good idea for datazoom would be to "fold" or "unfold" details.  			// i.e. if datazoomed out only class structures are visible, when datazooming in the control | 
