mirror of
https://github.com/glfw/glfw.git
synced 2024-11-26 03:52:01 +00:00
add _NET_WM_NAME to the hasEWMGH check
This commit is contained in:
parent
8e2f4cfb31
commit
1be6f17c66
@ -141,6 +141,7 @@ typedef struct _GLFWwindowX11
|
|||||||
Colormap colormap; // Window colormap
|
Colormap colormap; // Window colormap
|
||||||
Window handle; // Window handle
|
Window handle; // Window handle
|
||||||
Atom wmDeleteWindow; // WM_DELETE_WINDOW atom
|
Atom wmDeleteWindow; // WM_DELETE_WINDOW atom
|
||||||
|
Atom wmName; // _NET_WM_NAME atom
|
||||||
Atom wmPing; // _NET_WM_PING atom
|
Atom wmPing; // _NET_WM_PING atom
|
||||||
Atom wmState; // _NET_WM_STATE atom
|
Atom wmState; // _NET_WM_STATE atom
|
||||||
Atom wmStateFullscreen; // _NET_WM_STATE_FULLSCREEN atom
|
Atom wmStateFullscreen; // _NET_WM_STATE_FULLSCREEN atom
|
||||||
|
@ -195,6 +195,9 @@ static GLboolean hasEWMH(_GLFWwindow* window)
|
|||||||
window->X11.wmStateFullscreen =
|
window->X11.wmStateFullscreen =
|
||||||
getSupportedAtom(supportedAtoms, atomCount, "_NET_WM_STATE_FULLSCREEN");
|
getSupportedAtom(supportedAtoms, atomCount, "_NET_WM_STATE_FULLSCREEN");
|
||||||
|
|
||||||
|
window->X11.wmName =
|
||||||
|
getSupportedAtom(supportedAtoms, atomCount, "_NET_WM_NAME");
|
||||||
|
|
||||||
window->X11.wmPing =
|
window->X11.wmPing =
|
||||||
getSupportedAtom(supportedAtoms, atomCount, "_NET_WM_PING");
|
getSupportedAtom(supportedAtoms, atomCount, "_NET_WM_PING");
|
||||||
|
|
||||||
@ -1513,11 +1516,14 @@ void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
|
|||||||
XStoreName(_glfwLibrary.X11.display, window->X11.handle, title);
|
XStoreName(_glfwLibrary.X11.display, window->X11.handle, title);
|
||||||
XSetIconName(_glfwLibrary.X11.display, window->X11.handle, title);
|
XSetIconName(_glfwLibrary.X11.display, window->X11.handle, title);
|
||||||
|
|
||||||
XChangeProperty(_glfwLibrary.X11.display, window->X11.handle,
|
if(window->X11.wmName != None)
|
||||||
XInternAtom(_glfwLibrary.X11.display, "_NET_WM_NAME", False),
|
{
|
||||||
|
XChangeProperty(_glfwLibrary.X11.display, window->X11.handle,
|
||||||
|
window->X11.wmName,
|
||||||
XInternAtom(_glfwLibrary.X11.display, "UTF8_STRING", False),
|
XInternAtom(_glfwLibrary.X11.display, "UTF8_STRING", False),
|
||||||
8, PropModeReplace, (unsigned char *) title,
|
8, PropModeReplace, (unsigned char *) title,
|
||||||
strlen(title));
|
strlen(title));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user