Fix changeColor hex logic

pull/13/head
singerdmx 4 years ago
parent dfe812e837
commit 7a2529fdd6
  1. 6
      lib/widgets/toolbar.dart

@ -487,8 +487,12 @@ class _ColorButtonState extends State<ColorButton> {
} }
void _changeColor(Color color) { void _changeColor(Color color) {
String hex = color.value.toRadixString(16);
if (hex.startsWith('ff')) {
hex = hex.substring(2);
}
widget.controller widget.controller
.formatSelection(ColorAttribute('#${color.value.toRadixString(16)}')); .formatSelection(ColorAttribute('#$hex'));
Navigator.of(context).pop(); Navigator.of(context).pop();
} }

Loading…
Cancel
Save