diff --git a/honoka/plugins/asciiinput.cpp b/honoka/plugins/asciiinput.cpp index 31b4a5c..21ca51f 100644 --- a/honoka/plugins/asciiinput.cpp +++ b/honoka/plugins/asciiinput.cpp @@ -43,6 +43,7 @@ scim_string_to_key_list(lowProprotyKey,cfg->read(HONOKA_CONFIG_ASCIIINPUT_LOW_PRIORITY_KEY,String(HONOKA_DEFAULT_ASCIIINPUT_LOW_PRIORITY_KEY))); scim_string_to_key_list(autoCommitKey,cfg->read(HONOKA_CONFIG_ASCIIINPUT_AUTO_COMMIT_KEY,String(HONOKA_DEFAULT_ASCIIINPUT_AUTO_COMMIT_KEY))); autoCommit = cfg->read(HONOKA_CONFIG_ASCIIINPUT_AUTO_COMMIT,HONOKA_DEFAULT_ASCIIINPUT_AUTO_COMMIT); + appendDelayEvent(10); } @@ -99,9 +100,9 @@ /*! - \fn Honoka::AsciiInput::keyEvent(const KeyEvent &key) + \fn AsciiInput::keyEvent(const KeyEvent &key) */ -bool Honoka::AsciiInput::keyEvent(const KeyEvent &key) +bool AsciiInput::keyEvent(const KeyEvent &key) { // ���äƤ����٤���Ρ� if ((key.code == SCIM_KEY_Shift_L) || diff --git a/honoka/plugins/asciiinput.h b/honoka/plugins/asciiinput.h index 22576da..ca9f7be 100644 --- a/honoka/plugins/asciiinput.h +++ b/honoka/plugins/asciiinput.h @@ -46,7 +46,6 @@ virtual String getModeName(); virtual String getPropertyName(); virtual bool keyEventHook(const KeyEvent &key); - protected: HonokaKeyEventList lowProprotyKey,autoCommitKey; bool autoCommit;