Bug 493706
| Summary: | [PATCH] ibus-hangul Hanja arrow keys are wrong | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Warren Togami <wtogami> |
| Component: | ibus-hangul | Assignee: | Peng Huang <phuang> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | rawhide | CC: | i18n-bugs, phuang |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2009-04-13 18:58:32 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 481098 | ||
|
Description
Warren Togami
2009-04-02 18:47:03 UTC
This patch makes it behave properly for Vertical candidate selection mode, which is the only mode that matters. Windows has only vertical mode. MacOS defaults to vertical but has a horizontal option. Separate Bug #493687 would make our ibus-hangul default to vertical mode. --- ibus-hangul-1.1.0.20090328.orig/src/engine.c 2009-04-06 16:21:46.663081165 -0400 +++ ibus-hangul-1.1.0.20090328/src/engine.c 2009-04-06 16:50:00.163321101 -0400 @@ -384,19 +384,19 @@ ibus_hangul_engine_commit_current_candidate (hangul); ibus_hangul_engine_close_lookup_table (hangul); - } else if (keyval == IBUS_Left) { + } else if (keyval == IBUS_Up) { ibus_lookup_table_cursor_up (hangul->table); ibus_hangul_engine_update_lookup_table (hangul); ibus_hangul_engine_update_auxiliary_text (hangul); - } else if (keyval == IBUS_Right) { + } else if (keyval == IBUS_Down) { ibus_lookup_table_cursor_down (hangul->table); ibus_hangul_engine_update_lookup_table (hangul); ibus_hangul_engine_update_auxiliary_text (hangul); - } else if (keyval == IBUS_Up) { + } else if (keyval == IBUS_Left) { ibus_lookup_table_page_up (hangul->table); ibus_hangul_engine_update_lookup_table (hangul); ibus_hangul_engine_update_auxiliary_text (hangul); - } else if (keyval == IBUS_Down) { + } else if (keyval == IBUS_Right) { ibus_lookup_table_page_down (hangul->table); ibus_hangul_engine_update_lookup_table (hangul); ibus_hangul_engine_update_auxiliary_text (hangul); It is better to submit this patch to author of ibus-hangul. |