diff --git a/vmwgfx/vmwgfx_crtc.c b/vmwgfx/vmwgfx_crtc.c index 4f9cdda..dad8815 100644 --- a/vmwgfx/vmwgfx_crtc.c +++ b/vmwgfx/vmwgfx_crtc.c @@ -213,6 +213,15 @@ crtc_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode, crtc->active = TRUE; #endif + /* + * Strictly, this needs to be done only once per configuration change, + * not once per crtc, but there's no better place to put this. Since + * Intel wrote the crtc code, let's do what the xf86-video-intel driver + * does. + */ + if (pScreen) + xf86_reload_cursors(pScreen); + return TRUE; }