ibusManager: fix ibus launch error because of wrong method name

https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1080
This commit is contained in:
Alynx Zhou 2020-03-09 10:09:47 +08:00 committed by Carlos Garnacho
parent be187f4149
commit 94f6976ddd

View File

@ -66,7 +66,7 @@ var IBusManager = class {
let display = GLib.getenv('GNOME_SETUP_DISPLAY');
if (display)
launcher.setenv('DISPLAY', display, true);
launcher.launch(cmdLine);
launcher.spawnv(cmdLine);
} catch (e) {
log(`Failed to launch ibus-daemon: ${e.message}`);
}