Skip to content

Commit

Permalink
fix: [TM-43436] Angular bracket "<>" is not in alignment in Quill ed…
Browse files Browse the repository at this point in the history
…itor
  • Loading branch information
thelukewalton committed Jun 10, 2024
1 parent c3ea29b commit 1bbd5f1
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions lib/src/components/organisms/quill_editor/quill_toolbar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -557,20 +557,16 @@ class ZdsQuillToolbar extends QuillToolbar {
),
),
if (showInlineCode)
Column(
children: [
QuillToolbarToggleStyleButton(
attribute: Attribute.inlineCode,
controller: controller,
options: QuillToolbarToggleStyleButtonOptions(
iconData: Icons.code,
iconSize: toolbarIconSize,
iconTheme: iconTheme,
afterButtonPressed: afterButtonPressed,
tooltip: buttonTooltips[ToolbarButtons.inlineCode],
),
),
],
QuillToolbarToggleStyleButton(
attribute: Attribute.inlineCode,
controller: controller,
options: QuillToolbarToggleStyleButtonOptions(
iconData: Icons.code,
iconSize: toolbarIconSize,
iconTheme: iconTheme,
afterButtonPressed: afterButtonPressed,
tooltip: buttonTooltips[ToolbarButtons.inlineCode],
),
),
if (showDividers) QuillToolbarDivider(axis, color: sectionDividerColor, space: sectionDividerSpace),
if (showColorButton)
Expand Down

0 comments on commit 1bbd5f1

Please sign in to comment.