Swap order of shortcut map merging so that customShortcuts are added first and override existing duplicate trigger shortcuts by absorbing the input first (#2089)

Co-authored-by: ryanscott0515 <ryanscott0515@gmail.com>
pull/2093/head v10.1.7
DeveloperBiz 8 months ago committed by GitHub
parent 23f66b38ae
commit 4c04fcf90a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 15
      lib/src/editor/raw_editor/raw_editor_state.dart

@ -533,7 +533,12 @@ class QuillRawEditorState extends EditorState
child: QuillStyles(
data: _styles!,
child: Shortcuts(
shortcuts: mergeMaps<ShortcutActivator, Intent>({
/// Merge with widget.configurations.customShortcuts
/// first to allow user's defined shortcuts to take
/// priority when activation triggers are the same
shortcuts: mergeMaps<ShortcutActivator, Intent>(
{...?widget.configurations.customShortcuts},
{
// shortcuts added for Desktop platforms.
const SingleActivator(
LogicalKeyboardKey.escape,
@ -710,10 +715,10 @@ class QuillRawEditorState extends EditorState
control: !isDesktopMacOS,
meta: isDesktopMacOS,
): const ScrollIntent(
direction: AxisDirection.down, type: ScrollIncrementType.page),
}, {
...?widget.configurations.customShortcuts
}),
direction: AxisDirection.down,
type: ScrollIncrementType.page),
},
),
child: Actions(
actions: mergeMaps<Type, Action<Intent>>(_actions, {
...?widget.configurations.customActions,

Loading…
Cancel
Save