Commit 5c5eef8d authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

winemac: Trace when a window's per-pixel-alpha setting changes.

parent c2e316a3
......@@ -481,6 +481,7 @@ static void sync_window_opacity(struct macdrv_win_data *data, COLORREF key, BYTE
if (!data->per_pixel_alpha != !per_pixel_alpha)
{
TRACE("setting window %p/%p per-pixel-alpha to %d\n", data->hwnd, data->cocoa_window, per_pixel_alpha);
macdrv_window_use_per_pixel_alpha(data->cocoa_window, per_pixel_alpha);
data->per_pixel_alpha = per_pixel_alpha;
needs_flush = TRUE;
......
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