mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-27 07:03:36 -04:00
x11: Fix missing _net_wm_name field due to bad merge
This commit is contained in:
parent
ad57762e9f
commit
23124dac07
@ -409,6 +409,7 @@ x11GraphicsPipe(const std::string &display) :
|
||||
_net_startup_info = XInternAtom(_display, "_NET_STARTUP_INFO", false);
|
||||
_net_startup_info_begin = XInternAtom(_display, "_NET_STARTUP_INFO_BEGIN", false);
|
||||
_net_wm_bypass_compositor = XInternAtom(_display, "_NET_WM_BYPASS_COMPOSITOR", false);
|
||||
_net_wm_name = XInternAtom(_display, "_NET_WM_NAME", false);
|
||||
_net_wm_pid = XInternAtom(_display, "_NET_WM_PID", false);
|
||||
_net_wm_ping = XInternAtom(_display, "_NET_WM_PING", false);
|
||||
_net_wm_state = XInternAtom(_display, "_NET_WM_STATE", false);
|
||||
|
@ -174,6 +174,7 @@ public:
|
||||
Atom _net_startup_info;
|
||||
Atom _net_startup_info_begin;
|
||||
Atom _net_wm_bypass_compositor;
|
||||
Atom _net_wm_name;
|
||||
Atom _net_wm_pid;
|
||||
Atom _net_wm_ping;
|
||||
Atom _net_wm_state;
|
||||
|
Loading…
x
Reference in New Issue
Block a user