Skip to content
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

empty document with (bolt) style triggers twice the change listener #2497

Open
1 task done
eelco2k opened this issue Mar 2, 2025 · 0 comments
Open
1 task done

empty document with (bolt) style triggers twice the change listener #2497

eelco2k opened this issue Mar 2, 2025 · 0 comments
Labels
bug Something isn't working minor Minimal impact or cosmetic issue. Can be resolved at a later time without affecting overall function

Comments

@eelco2k
Copy link

eelco2k commented Mar 2, 2025

Have you checked for an existing issue?

Flutter Quill Version

11.0

Steps to Reproduce

  1. start an empty quill editor.
  2. set cursor/caret in active white area
  3. press for example the "B" (bolt) button.
  4. press on letter on the keyboard. (H) for example

the function of the listener will execute twice...
textEditorController.changes.listen((DocChange event) {
// will exec. 2 times...
});

these are the delta's

{"before":[{"insert":"H\n"}],"change":[{"retain":1,"attributes":{"bold":true}}]},
{"before":[{"insert":"H\n"}],"change":[{"retain":1,"attributes":{"bold":true}}]}

Expected results

triggered only once with correct docChange

so only one entry:

{"before":[{"insert":"\n"}],"change":[{"insert": "H","attributes":{"bold":true}}]}

Actual results

see above

Additional Context

No response

@eelco2k eelco2k added the bug Something isn't working label Mar 2, 2025
@CatHood0 CatHood0 added the minor Minimal impact or cosmetic issue. Can be resolved at a later time without affecting overall function label Mar 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working minor Minimal impact or cosmetic issue. Can be resolved at a later time without affecting overall function
Projects
None yet
Development

No branches or pull requests

2 participants