Skip to content

Commit

Permalink
Merge pull request #13 from spdermn02/mp/txt_strk_w
Browse files Browse the repository at this point in the history
Change stroke line width action data fields to text type
  • Loading branch information
spdermn02 authored Aug 8, 2023
2 parents df9a142 + 613b0d6 commit 551878f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builders/gen_entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ function makeDrawStyleData(idPrefix, /* out */ data, withShadow = true) {
let format = `Fill\nColor{${i++}}Stroke\nWidth{${i++}}{${i++}}Stroke\nColor{${i++}}`;
data.push(
makeColorData(idPrefix + "_style_fillColor", "Fill"),
makeNumericData(idPrefix + "_style_line_width", "Stroke Width", 0, 0, 999999, true),
makeTextData(idPrefix + "_style_line_width", "Stroke Width", "0"),
makeSizeTypeData(idPrefix + "_style_line_width"),
makeColorData(idPrefix + "_style_line_color", "Stroke"),
);
Expand Down

0 comments on commit 551878f

Please sign in to comment.