Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksim-Nikolaev committed Jan 17, 2025
2 parents 8bdb9a1 + 3e5ed8f commit 1f273f1
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions lib/src/toolbar/buttons/clipboard_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -193,17 +193,16 @@ class QuillToolbarClipboardButtonState
}

return UtilityWidgets.maybeTooltip(
message: tooltip,
child: QuillToolbarIconButton(
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
),
isSelected: false,
onPressed: currentValue ? _onPressed : null,
afterPressed: afterButtonPressed,
iconTheme: iconTheme,
),
);
message: tooltip,
child: QuillToolbarIconButton(
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
),
isSelected: false,
onPressed: currentValue ? _onPressed : null,
afterPressed: afterButtonPressed,
iconTheme: iconTheme,
));
}
}

0 comments on commit 1f273f1

Please sign in to comment.