diff options
Diffstat (limited to 'alf/alfcombobox.cpp')
| -rw-r--r-- | alf/alfcombobox.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/alf/alfcombobox.cpp b/alf/alfcombobox.cpp index eebb269..a227a8d 100644 --- a/alf/alfcombobox.cpp +++ b/alf/alfcombobox.cpp @@ -285,6 +285,10 @@ ALF__ComboWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) return TRUE; } + if (ALF_ShouldMessageBubble(hwnd, uMsg, wParam, lParam)) { + return SendMessage(GetParent(hwnd), uMsg, wParam, lParam); + } + return DefWindowProc(hwnd, uMsg, wParam, lParam); } |
