diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-09 19:08:46 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-09 19:08:46 +0200 |
| commit | 860d61661b82198bae93736980c340f5d2c4e152 (patch) | |
| tree | e02570a90c25f51ddde6da6a08b1eae9ccbe5e2a /alf/alfcombobox.cpp | |
| parent | 2a08707cf5a5207a19715907cdef6c2f7a8a52e7 (diff) | |
notebook: fix focus when changing tabs
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); } |
