Revert changes in _SelectHeaderStyleButtonState

pull/19/head
singerdmx 4 years ago
parent 39f0dad270
commit 55da7d626c
  1. 2
      lib/widgets/text_line.dart
  2. 8
      lib/widgets/toolbar.dart

@ -60,7 +60,7 @@ class TextLine extends StatelessWidget {
textAlign,
textDirection,
1.0,
Localizations.localeOf(context),
Localizations.localeOf(context, nullOk: true),
strutStyle,
TextWidthBasis.parent,
null);

@ -446,13 +446,7 @@ Widget _selectHeadingStyleButtonBuilder(
height: iconSize * 1.77,
fillColor: Theme.of(context).canvasColor,
child: Text(
_valueToText[value.key == "header"
? Attribute.header
: (value.key == "h1")
? Attribute.h1
: (value.key == "h2")
? Attribute.h2
: Attribute.h3],
_valueToText[value],
style: TextStyle(fontSize: 13, fontWeight: FontWeight.w600),
),
initialValue: value,

Loading…
Cancel
Save