diff --git a/hw/xwin/ChangeLog b/hw/xwin/ChangeLog index f4219adaa..7a0d7b599 100644 --- a/hw/xwin/ChangeLog +++ b/hw/xwin/ChangeLog @@ -1,3 +1,8 @@ +2004-11-24 Alexander Gottwald + + * winmultiwindowwm.c: + Finally the multiwindow mode defines a default cursor + 2004-11-22 Alexander Gottwald * winmultiwindowwm.c: diff --git a/hw/xwin/winmultiwindowwm.c b/hw/xwin/winmultiwindowwm.c index 1ac99f958..c737ac05f 100644 --- a/hw/xwin/winmultiwindowwm.c +++ b/hw/xwin/winmultiwindowwm.c @@ -45,6 +45,7 @@ #include #include #include +#include /* Windows headers */ #include @@ -187,7 +188,6 @@ static Bool g_shutdown = FALSE; static Bool redirectError = FALSE; static Bool g_fAnotherWMRunnig = FALSE; - /* * PushMessage - Push a message onto the queue */ @@ -1227,6 +1227,16 @@ winInitMultiWindowWM (WMInfoPtr pWMInfo, WMProcArgPtr pProcArg) pWMInfo->atmPrivMap = XInternAtom (pWMInfo->pDisplay, WINDOWSWM_NATIVE_HWND, False); + + + if (1) { + Cursor cursor = XCreateFontCursor (pWMInfo->pDisplay, XC_left_ptr); + if (cursor) + { + XDefineCursor (pWMInfo->pDisplay, DefaultRootWindow(pWMInfo->pDisplay), cursor); + XFreeCursor (pWMInfo->pDisplay, cursor); + } + } }