-
Notifications
You must be signed in to change notification settings - Fork 873
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inserting Chinese text after an image converts the image to 'obj' #2503
Comments
It's related to SouGou IME, this issue does not occur with the OS bundled Microsoft Chinese IME. I wonder where could we start to figure it out. |
What you're saying is true. I tried using Microsoft Pinyin to input Chinese and didn't find this problem. But Sogou Pinyin is very commonly used in China and should also be adapted. Technical Context for Chinese IMEsIME Composition BehaviorChinese input methods like Sogou Pinyin use multi-step composition:Users type phonetic text (e.g., "nihao") → IME shows candidate characters (e.g., "你好") Why This Fix Is NeededSogou Pinyin Issue: During composition, Microsoft Pinyin Workaround: It automatically adjusts cursor positions through OS-level text services, making explicit handling unnecessary. Key Implementation Logic
References for Further Discussion
Let me know if you need a demo or additional technical details! 🛠️ |
This comment has been minimized.
This comment has been minimized.
Ran into the same problem and the OBJ is displayed on the PC, pls is there a solution |
@raopipi we are fixing it. But it needs more testing to avoid break default behavior for the other languages. |
@raopipi If you're in a hurry, you can use my modified version first—it should address the issue. Regarding my changes, the PR has already been submitted, but further testing is still needed to avoid impacting other areas. I’m unsure how long it will take for it to be merged into the release version. |
Thank you very much, at the moment we are using it on the PC, let me take a look |
Have you checked for an existing issue?
Flutter Quill Version
11.0.0
Steps to Reproduce
When inserting Chinese text using an IME (Input Method Editor) after an embedded image in flutter_quill, the image gets converted to a plain "obj" string. This does NOT occur when typing English text after the image.
Environment
flutter_quill: 11.0.0
Device: windows 11
Input Method: Sogou Pinyin IME
Additional Notes from Reporter
I've attempted a potential fix by adjusting the cursor position calculation during IME composition. This modification appears to resolve the Chinese input issue specifically, but requires further validation:
lib/src/editor/raw_editor/raw_editor_state_text_input_client_mixin.dart:199
void updateEditingValue(TextEditingValue value)
Expected results
The embedded image should remain intact when inserting Chinese text after it, just like when inserting English text.
Actual results
Inserting Chinese text after an image converts the image to 'obj'
Additional Context
Screenshots / Video demonstration
[Attach media here]
Logs
[Paste logs here]
The text was updated successfully, but these errors were encountered: