summaryrefslogtreecommitdiff
path: root/src/include/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/main.h')
-rw-r--r--src/include/main.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/main.h b/src/include/main.h
index db384ce..7d3299e 100644
--- a/src/include/main.h
+++ b/src/include/main.h
@@ -188,9 +188,10 @@ struct shape_options {
int Visibility;
v4 FillCol = {1, 1, 1, 1};
v4 StrokeCol = {0, 1, 0, 1};
- float StrokeWidth = 10;
+ float StrokeWidth = 25;
nvg_line_cap LineJoinType = NVG_ROUND;
nvg_line_cap LineCapType = NVG_ROUND;
+ real32 Roundness;
};
struct shape_layer {
@@ -248,7 +249,8 @@ char *ToolName[] {
"Move",
"Crop",
"Brush",
- "Pen"
+ "Pen",
+ "Square"
};
enum tool {
@@ -256,6 +258,7 @@ enum tool {
tool_crop,
tool_brush,
tool_pen,
+ tool_square,
tool_count
};