Skip to content

Commit

Permalink
feat(text): set the default fill color to white and the stroke to red
Browse files Browse the repository at this point in the history
fixes #510
  • Loading branch information
TimPietrusky committed Nov 10, 2021
1 parent 58da409 commit bfedb63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/application/sample-modules/Text.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default {

fillColor: {
type: "color",
default: "#000000",
default: "#ffffff",
set(args) {
this.drawText(args);
}
Expand All @@ -103,7 +103,7 @@ export default {

strokeColor: {
type: "color",
default: "#ffffff",
default: "#ff0000",
set(args) {
this.drawText(args);
}
Expand Down

0 comments on commit bfedb63

Please sign in to comment.