From a0dfe6cd7529b81d742c3fe9c24e962e3ca37a3e Mon Sep 17 00:00:00 2001 From: Jaex Date: Sat, 14 Apr 2018 13:36:37 +0300 Subject: [PATCH] Change default watermark text to make it obvious it is watermark --- ShareX.ImageEffectsLib/Drawings/DrawText.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ShareX.ImageEffectsLib/Drawings/DrawText.cs b/ShareX.ImageEffectsLib/Drawings/DrawText.cs index 4fcbac732..62a72f0a3 100644 --- a/ShareX.ImageEffectsLib/Drawings/DrawText.cs +++ b/ShareX.ImageEffectsLib/Drawings/DrawText.cs @@ -58,7 +58,7 @@ public Point Offset [DefaultValue(true), Description("If text watermark size bigger than source image then don't draw it.")] public bool AutoHide { get; set; } - [DefaultValue("getsharex.com"), Editor(typeof(NameParserEditor), typeof(UITypeEditor))] + [DefaultValue("Text watermark"), Editor(typeof(NameParserEditor), typeof(UITypeEditor))] public string Text { get; set; } private FontSafe textFontSafe = new FontSafe(); @@ -131,7 +131,7 @@ public int CornerRadius [DefaultValue(LinearGradientMode.Vertical)] public LinearGradientMode GradientType { get; set; } - [DefaultValue(typeof(Color), "0, 20, 40"), Editor(typeof(MyColorEditor), typeof(UITypeEditor)), TypeConverter(typeof(MyColorConverter))] + [DefaultValue(typeof(Color), "0, 30, 80"), Editor(typeof(MyColorEditor), typeof(UITypeEditor)), TypeConverter(typeof(MyColorConverter))] public Color BackgroundColor2 { get; set; } [DefaultValue(false)]