diff options
| author | Peng Wu <alexepico@gmail.com> | 2016-07-06 14:39:24 +0800 |
|---|---|---|
| committer | Peng Wu <alexepico@gmail.com> | 2016-07-06 14:39:24 +0800 |
| commit | a913febc474c878dbb04c04205022beddfd8e8f3 (patch) | |
| tree | 618e3c015104027de43eb55f0eb885886ddc3780 /src | |
| parent | 573d7c64eacf4f8d98a2937cdda52a528c888a48 (diff) | |
| download | ibus-libpinyin-a913febc474c878dbb04c04205022beddfd8e8f3.tar.gz ibus-libpinyin-a913febc474c878dbb04c04205022beddfd8e8f3.tar.xz ibus-libpinyin-a913febc474c878dbb04c04205022beddfd8e8f3.zip | |
fixes auxiliary text
Diffstat (limited to 'src')
| -rw-r--r-- | src/PYPBopomofoEditor.cc | 3 | ||||
| -rw-r--r-- | src/PYPDoublePinyinEditor.cc | 3 | ||||
| -rw-r--r-- | src/PYPFullPinyinEditor.cc | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/src/PYPBopomofoEditor.cc b/src/PYPBopomofoEditor.cc index 9aac5ab..fd688ad 100644 --- a/src/PYPBopomofoEditor.cc +++ b/src/PYPBopomofoEditor.cc @@ -351,9 +351,6 @@ BopomofoEditor::updateAuxiliaryText (void) m_buffer << aux_text; g_free(aux_text); - if (m_cursor == m_pinyin_len) - m_buffer << '|'; - /* append rest text */ const gchar * p = m_text.c_str() + m_pinyin_len; m_buffer << p; diff --git a/src/PYPDoublePinyinEditor.cc b/src/PYPDoublePinyinEditor.cc index d1a0a43..db55b65 100644 --- a/src/PYPDoublePinyinEditor.cc +++ b/src/PYPDoublePinyinEditor.cc @@ -132,9 +132,6 @@ DoublePinyinEditor::updateAuxiliaryText (void) m_buffer << aux_text; g_free(aux_text); - if (m_cursor == m_pinyin_len) - m_buffer << '|'; - /* append rest text */ const gchar * p = m_text.c_str() + m_pinyin_len; m_buffer << p; diff --git a/src/PYPFullPinyinEditor.cc b/src/PYPFullPinyinEditor.cc index c1b54d7..70de09f 100644 --- a/src/PYPFullPinyinEditor.cc +++ b/src/PYPFullPinyinEditor.cc @@ -98,9 +98,6 @@ FullPinyinEditor::updateAuxiliaryText (void) m_buffer << aux_text; g_free(aux_text); - if (m_cursor == m_pinyin_len) - m_buffer << '|'; - /* append rest text */ const gchar * p = m_text.c_str() + m_pinyin_len; m_buffer << p; |
