Commit bbdc50c5 authored by Brendan McGrath's avatar Brendan McGrath Committed by Alexandre Julliard

comdlg32: Don't treat cmb1 as the printer list unless in PRINT_SETUP.

This changes WMCommandW to match WMCommandA.
parent 39bd338a
......@@ -1988,7 +1988,10 @@ static LRESULT PRINTDLG_WMCommandW(HWND hDlg, WPARAM wParam,
}
break;
case cmb1: /* Printer Combobox in PRINT SETUP */
case cmb1: /* Printer Combobox in PRINT SETUP, quality combobox in PRINT16 */
if (PrinterComboID != LOWORD(wParam)) {
break;
}
/* FALLTHROUGH */
case cmb4: /* Printer combobox */
if (HIWORD(wParam)==CBN_SELCHANGE) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment