diff options
author | William Hua <william.hua@canonical.com> | 2014-09-15 12:04:59 -0400 |
---|---|---|
committer | William Hua <william.hua@canonical.com> | 2014-09-15 12:04:59 -0400 |
commit | cd8ecdbcb0d936b6e6ef2b9bdf4253162299cfd4 (patch) | |
tree | 2ede12096751e018470ac2fe409d4134effb2e92 /lib/indicator-menu.vala | |
parent | 4d9387c577ae088321f8a4f6f1f4e14532502364 (diff) | |
download | ayatana-indicator-keyboard-cd8ecdbcb0d936b6e6ef2b9bdf4253162299cfd4.tar.gz ayatana-indicator-keyboard-cd8ecdbcb0d936b6e6ef2b9bdf4253162299cfd4.tar.bz2 ayatana-indicator-keyboard-cd8ecdbcb0d936b6e6ef2b9bdf4253162299cfd4.zip |
Hide indicator menu in desktop session when Fcitx is active.
Diffstat (limited to 'lib/indicator-menu.vala')
-rw-r--r-- | lib/indicator-menu.vala | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/lib/indicator-menu.vala b/lib/indicator-menu.vala index 115adc5f..a4587dd8 100644 --- a/lib/indicator-menu.vala +++ b/lib/indicator-menu.vala @@ -19,11 +19,12 @@ public class Indicator.Keyboard.IndicatorMenu : MenuModel { public enum Options { - NONE = 0x0, - DCONF = 0x1, - IBUS = 0x2, - FCITX = 0x4, - SETTINGS = 0x8 + NONE = 0x00, + DCONF = 0x01, + XKB = 0x02, + IBUS = 0x04, + FCITX = 0x08, + SETTINGS = 0x10 } private Options options; @@ -77,9 +78,11 @@ public class Indicator.Keyboard.IndicatorMenu : MenuModel { sources_section.remove_all (); for (var i = 0; i < sources.length; i++) { - if (sources[i].is_xkb || - (sources[i].is_ibus && (options & Options.IBUS) != Options.NONE) || - (sources[i].is_fcitx && (options & Options.FCITX) != Options.NONE)) { + var visible = (sources[i].is_xkb && (options & Options.XKB) != Options.NONE) || + (sources[i].is_ibus && (options & Options.IBUS) != Options.NONE) || + (sources[i].is_fcitx && (options & Options.FCITX) != Options.NONE); + + if (visible) { string action; if ((options & Options.DCONF) != Options.NONE) { |