Commit 8d8eab04 authored by Roman Pišl's avatar Roman Pišl Committed by Alexandre Julliard

wineconsole: Don't activate window when computing positions.

parent 106d803d
......@@ -253,7 +253,7 @@ static void WCUSER_ComputePositions(struct inner_data* data)
}
SetWindowPos(data->hWnd, 0, 0, 0, r.right - r.left + dx, r.bottom - r.top + dy,
SWP_NOMOVE|SWP_NOZORDER);
SWP_NOMOVE|SWP_NOZORDER|SWP_NOACTIVATE);
WCUSER_ShapeCursor(data, data->curcfg.cursor_size, data->curcfg.cursor_visible, TRUE);
WCUSER_PosCursor(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