Commit a2c644a8 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

wineps: Set text and background color during device creation.

parent c15add32
......@@ -1748,6 +1748,9 @@ HANDLE WINAPI OpenPrintProcessor(WCHAR *port, PRINTPROCESSOROPENDATA *open_data)
return NULL;
}
data->pdev->dev.hdc = hdc;
PSDRV_SetTextColor(&data->pdev->dev, GetTextColor(hdc));
PSDRV_SetBkColor(&data->pdev->dev, GetBkColor(hdc));
return (HANDLE)data;
}
......
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