From 1eb9bec2155b6d0b5757568018fb1dc567b1f16d Mon Sep 17 00:00:00 2001 From: "Spivak Vladimir (cwolf3d)" Date: Sat, 21 Sep 2019 02:32:43 +0300 Subject: Curve Tools: Some bugs fix. --- curve_tools/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'curve_tools/__init__.py') diff --git a/curve_tools/__init__.py b/curve_tools/__init__.py index 6549d8c6..ceba9619 100644 --- a/curve_tools/__init__.py +++ b/curve_tools/__init__.py @@ -231,14 +231,14 @@ class curvetoolsSettings(PropertyGroup): ) font_thickness: IntProperty( name="Font thickness", - default=1, + default=2, min=1, max=1024, soft_min=2, description="Font thickness (px)" ) font_size: FloatProperty( name="Font size", - default=0.5, + default=0.1, precision=3, description="Font size" ) @@ -449,6 +449,8 @@ class VIEW3D_PT_CurvePanel(Panel): row = col.row(align=True) row.label(text="Alt + mouse click - select spline") row = col.row(align=True) + row.label(text="Alt + Shift + mouse click - add spline to select") + row = col.row(align=True) row.label(text="A - deselect all") -- cgit v1.2.3