Skip to content

Commit

Permalink
wm/ibus: Don't disable the panel
Browse files Browse the repository at this point in the history
Without the panel service we'll have no candidate window. Until such point
as Budgie itself supports a candidate window over dbus, then we'll use
this one.

Distributions may opt to patch/override settings for ibus to not use the
tray icon (as it's kinda ugly, let's be honest.)

Signed-off-by: Ikey Doherty <ikey@solus-project.com>
  • Loading branch information
ikeydoherty committed Apr 16, 2017
1 parent 1e55470 commit 64efc9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wm/ibus.vala
Expand Up @@ -78,7 +78,7 @@ public class IBusManager : GLib.Object
*/
private void startup_ibus()
{
string[] cmdline = {"ibus-daemon", "--xim", "--panel", "disable"};
string[] cmdline = {"ibus-daemon", "--xim"};
try {
new Subprocess.newv(cmdline, SubprocessFlags.NONE);
} catch (Error e) {
Expand Down

0 comments on commit 64efc9d

Please sign in to comment.