From 7a2529fdd64894de56d091f110ad26162f053956 Mon Sep 17 00:00:00 2001 From: singerdmx Date: Sat, 26 Dec 2020 13:53:44 -0800 Subject: [PATCH] Fix changeColor hex logic --- lib/widgets/toolbar.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/widgets/toolbar.dart b/lib/widgets/toolbar.dart index 7f4ccc18..9bd561fc 100644 --- a/lib/widgets/toolbar.dart +++ b/lib/widgets/toolbar.dart @@ -487,8 +487,12 @@ class _ColorButtonState extends State { } void _changeColor(Color color) { + String hex = color.value.toRadixString(16); + if (hex.startsWith('ff')) { + hex = hex.substring(2); + } widget.controller - .formatSelection(ColorAttribute('#${color.value.toRadixString(16)}')); + .formatSelection(ColorAttribute('#$hex')); Navigator.of(context).pop(); }