Fix the tooltip

pull/1634/head
Ellet 1 year ago
parent 61aa29a950
commit a4dd9b54a8
  1. 2
      lib/src/widgets/toolbar/buttons/quill_icon_button.dart

@ -27,6 +27,7 @@ class QuillToolbarIconButton extends StatelessWidget {
Widget build(BuildContext context) { Widget build(BuildContext context) {
if (isSelected) { if (isSelected) {
return IconButton.filled( return IconButton.filled(
tooltip: tooltip,
padding: padding, padding: padding,
onPressed: onPressed, onPressed: onPressed,
icon: icon, icon: icon,
@ -34,6 +35,7 @@ class QuillToolbarIconButton extends StatelessWidget {
); );
} }
return IconButton( return IconButton(
tooltip: tooltip,
padding: padding, padding: padding,
onPressed: onPressed != null onPressed: onPressed != null
? () { ? () {

Loading…
Cancel
Save