diff --git a/app/lib/selections/properties/path.dart b/app/lib/selections/properties/path.dart index 0a993c29785a..dcad23b3d400 100644 --- a/app/lib/selections/properties/path.dart +++ b/app/lib/selections/properties/path.dart @@ -13,7 +13,7 @@ mixin PathPropertySelection on PropertySelection { value: property.strokeWidth, min: 0.1, max: 70, - defaultValue: 25, + defaultValue: 5, onChangeEnd: (value) => onChanged( (property as dynamic).copyWith(strokeWidth: value) as T)), ExactSlider( diff --git a/app/lib/selections/tools/laser.dart b/app/lib/selections/tools/laser.dart index bed9d2d63e72..e878dbdb4682 100644 --- a/app/lib/selections/tools/laser.dart +++ b/app/lib/selections/tools/laser.dart @@ -12,7 +12,7 @@ class LaserToolSelection extends ToolSelection { value: selected.first.strokeWidth, min: 0, max: 70, - defaultValue: 25, + defaultValue: 5, onChangeEnd: (value) => update( context, selected.map((e) => e.copyWith(strokeWidth: value)).toList(), diff --git a/metadata/en-US/changelogs/127.txt b/metadata/en-US/changelogs/127.txt index 07bc3375ebf4..626e0b490457 100644 --- a/metadata/en-US/changelogs/127.txt +++ b/metadata/en-US/changelogs/127.txt @@ -22,5 +22,6 @@ * Fix zoom slider is not centered * Fix shape detection list tile not clickable * Fix svg export shows wrong initial preset +* Fix default stroke width ([#779](https://github.com/LinwoodDev/Butterfly/issues/779)) Read more here: https://linwood.dev/butterfly/2.3.0-beta.0 \ No newline at end of file