Skip to content

Commit

Permalink
fix(rime_console): not showing switcher's context
Browse files Browse the repository at this point in the history
  • Loading branch information
lotem committed Sep 1, 2017
1 parent 555f990 commit 632cf4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/rime_console.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class RimeConsole {
for (const KeyEvent &key : keys) {
engine_->ProcessKey(key);
}
Context *ctx = engine_->context();
Context *ctx = engine_->active_context();
if (interactive_) {
PrintComposition(ctx);
}
Expand Down

1 comment on commit 632cf4b

@lotem
Copy link
Member Author

@lotem lotem commented on 632cf4b Sep 1, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes #130

Please sign in to comment.