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) {
if (isSelected) {
return IconButton.filled(
tooltip: tooltip,
padding: padding,
onPressed: onPressed,
icon: icon,
@ -34,6 +35,7 @@ class QuillToolbarIconButton extends StatelessWidget {
);
}
return IconButton(
tooltip: tooltip,
padding: padding,
onPressed: onPressed != null
? () {

Loading…
Cancel
Save