[2.5.1] Bug fix for Desktop `Shift` + `Click` support

pull/555/head
X Code 3 years ago
parent 30e6e0cb3b
commit 5a98b857a1
  1. 3
      CHANGELOG.md
  2. 2
      lib/src/widgets/editor.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [2.5.1]
* Bug fix for Desktop `Shift` + `Click` support.
## [2.5.0]
* Update checkbox list.

@ -842,7 +842,7 @@ class RenderEditor extends RenderEditableContainerBox
bool get _shiftPressed =>
RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.shiftLeft) ||
RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.shiftLeft);
RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.shiftRight);
void setStartHandleLayerLink(LayerLink value) {
if (_startHandleLayerLink == value) {

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 2.5.0
version: 2.5.1
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save