Skip to content

Commit 9c23d1d

Browse files
committed
Fix wrong condition in Instance::activate()
1 parent c4aaa7f commit 9c23d1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/fcitx/instance.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,7 @@ bool Instance::activate(InputContext *ic) {
13091309
if (!canTrigger()) {
13101310
return false;
13111311
}
1312-
if (!inputState->active_) {
1312+
if (inputState->active_) {
13131313
return true;
13141314
}
13151315
inputState->active_ = true;

0 commit comments

Comments
 (0)