From 321637e0e05a050d6dbaa8ea451250aec176be8c Mon Sep 17 00:00:00 2001 From: lollolong <65832054+lollolong@users.noreply.github.com> Date: Mon, 5 Aug 2024 20:52:01 +0200 Subject: Windows: disable dropdown split button in volume expander (#1389) --- src/Mount/Mount.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Mount') diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index 444e44d7..a851ebef 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -702,7 +702,9 @@ void EnableDisableButtons (HWND hwndDlg) case TC_MLIST_ITEM_FREE: default: +#if !defined(VCEXPANDER) EnableSplitButton(hwndDlg, IDOK); +#endif SetWindowTextW (hOKButton, GetString ("MOUNT_BUTTON")); // Invalid the button IDOK so that it will be redrawn InvalidateRect (hOKButton, NULL, TRUE); @@ -8134,6 +8136,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa } } } +#if !defined(VCEXPANDER) else { LPNMHDR pnmh = (LPNMHDR)lParam; @@ -8146,6 +8149,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa DestroyMenu(hmenu); } } +#endif return 0; case WM_ERASEBKGND: -- cgit v1.2.3