IBUS does not need a connection to the DBUS session bus

This commit is contained in:
Kovid Goyal
2018-07-09 10:48:00 +05:30
parent 26a6d6bef9
commit 3a4b614ae0
7 changed files with 7 additions and 19 deletions

2
glfw/wl_init.c vendored
View File

@@ -669,7 +669,7 @@ int _glfwPlatformInit(void)
_glfw.wl.registry = wl_display_get_registry(_glfw.wl.display);
wl_registry_add_listener(_glfw.wl.registry, &registryListener, NULL);
if (!glfw_xkb_create_context(&_glfw.wl.xkb, &_glfw.wl.dbus)) return GLFW_FALSE;
if (!glfw_xkb_create_context(&_glfw.wl.xkb)) return GLFW_FALSE;
// Sync so we got all registry objects
wl_display_roundtrip(_glfw.wl.display);