mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-27 12:19:10 +00:00
Finally the multiwindow mode defines a default cursor
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2004-11-24 Alexander Gottwald <ago at freedesktop dot org>
|
||||
|
||||
* winmultiwindowwm.c:
|
||||
Finally the multiwindow mode defines a default cursor
|
||||
|
||||
2004-11-22 Alexander Gottwald <ago at freedesktop dot org>
|
||||
|
||||
* winmultiwindowwm.c:
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
#include <X11/Xlocale.h>
|
||||
#include <X11/Xproto.h>
|
||||
#include <X11/Xutil.h>
|
||||
#include <X11/cursorfont.h>
|
||||
|
||||
/* Windows headers */
|
||||
#include <Xwindows.h>
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user