diff --git a/ShareX.ScreenCaptureLib/Shapes/AnnotationOptions.cs b/ShareX.ScreenCaptureLib/Shapes/AnnotationOptions.cs index c0de8a386..9fbb022da 100644 --- a/ShareX.ScreenCaptureLib/Shapes/AnnotationOptions.cs +++ b/ShareX.ScreenCaptureLib/Shapes/AnnotationOptions.cs @@ -31,11 +31,11 @@ public class AnnotationOptions { // Drawing public Color BorderColor { get; set; } = Color.Red; - public int BorderSize { get; set; } = 2; + public int BorderSize { get; set; } = 3; public Color FillColor { get; set; } = Color.FromArgb(0, 0, 0, 0); // Rounded rectangle region, rounded rectangle drawing - public int RoundedRectangleRadius { get; set; } = 15; + public int RoundedRectangleRadius { get; set; } = 8; // Text drawing public TextDrawingOptions TextOptions { get; set; } = new TextDrawingOptions(); diff --git a/ShareX.ScreenCaptureLib/Shapes/ShapeManagerMenu.cs b/ShareX.ScreenCaptureLib/Shapes/ShapeManagerMenu.cs index f75c8127e..7746fece3 100644 --- a/ShareX.ScreenCaptureLib/Shapes/ShapeManagerMenu.cs +++ b/ShareX.ScreenCaptureLib/Shapes/ShapeManagerMenu.cs @@ -406,7 +406,6 @@ private void CreateToolbar() tslnudCornerRadius = new ToolStripLabeledNumericUpDown(Resources.ShapeManager_CreateContextMenu_Corner_radius_); tslnudCornerRadius.Content.Minimum = 0; tslnudCornerRadius.Content.Maximum = 150; - tslnudCornerRadius.Content.Increment = 3; tslnudCornerRadius.Content.ValueChanged = (sender, e) => { ShapeType shapeType = CurrentShapeType;