aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/indicator-menu.vala6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/indicator-menu.vala b/lib/indicator-menu.vala
index 72441546..96bf64d6 100644
--- a/lib/indicator-menu.vala
+++ b/lib/indicator-menu.vala
@@ -23,8 +23,7 @@ public class Indicator.Keyboard.IndicatorMenu : MenuModel {
DCONF = 1 << 0,
XKB = 1 << 1,
IBUS = 1 << 2,
- FCITX = 1 << 3,
- SETTINGS = 1 << 4
+ SETTINGS = 1 << 3
}
private Options options;
@@ -82,8 +81,7 @@ public class Indicator.Keyboard.IndicatorMenu : MenuModel {
for (var i = 0; i < sources.length; i++) {
var visible = (sources[i].is_xkb && Options.XKB in options) ||
- (sources[i].is_ibus && Options.IBUS in options) ||
- (sources[i].is_fcitx && Options.FCITX in options);
+ (sources[i].is_ibus && Options.IBUS in options);
if (visible) {
string action;