Skip to content

Commit

Permalink
Fix #23
Browse files Browse the repository at this point in the history
Fix wrong condition in Instance::activate()
  • Loading branch information
wengxt committed May 30, 2018
1 parent c4aaa7f commit 9c23d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/fcitx/instance.cpp
Expand Up @@ -1309,7 +1309,7 @@ bool Instance::activate(InputContext *ic) {
if (!canTrigger()) {
return false;
}
if (!inputState->active_) {
if (inputState->active_) {
return true;
}
inputState->active_ = true;
Expand Down

0 comments on commit 9c23d1d

Please sign in to comment.