Skip to content

Commit

Permalink
Fixed SunPinyinLookupTable::cursor_up()
Browse files Browse the repository at this point in the history
Maybe mistake, use ibus_lookup_table_cursor_up() instead of ibus_lookup_table_cursor_down()
  • Loading branch information
Hodong Kim committed Jan 1, 2016
1 parent cf18102 commit ccd1cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrapper/ibus/src/sunpinyin_lookup_table.cpp
Expand Up @@ -82,7 +82,7 @@ SunPinyinLookupTable::update_candidates(const ICandidateList& cl)
bool
SunPinyinLookupTable::cursor_up()
{
ibus_lookup_table_cursor_down(*this);
ibus_lookup_table_cursor_up(*this);
return true;
}

Expand Down

0 comments on commit ccd1cd1

Please sign in to comment.