From 3a381916d6739f69d8c4a6a724b3575cf3ae95b4 Mon Sep 17 00:00:00 2001 From: li3317 Date: Fri, 25 Dec 2020 13:55:03 -0500 Subject: [PATCH] fix indent button --- lib/widgets/toolbar.dart | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/widgets/toolbar.dart b/lib/widgets/toolbar.dart index acc79a1a..8529a04d 100644 --- a/lib/widgets/toolbar.dart +++ b/lib/widgets/toolbar.dart @@ -682,8 +682,7 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget { bool showListBullets = true, bool showCodeBlock = true, bool showQuote = true, - bool showIndentIncrease = true, - bool showIndentDecrease = true, + bool showIndent, bool showLink = true, bool showHistory = true, bool showHorizontalRule = false, @@ -830,7 +829,7 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget { ), ), Visibility( - visible: showIndentIncrease, + visible: showIndent, child: IndentButton( icon: Icons.format_indent_increase, controller: controller, @@ -838,7 +837,7 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget { ), ), Visibility( - visible: showIndentDecrease, + visible: showIndent, child: IndentButton( icon: Icons.format_indent_decrease, controller: controller,