From c28ca731427514594f8928f82a0555d192149be1 Mon Sep 17 00:00:00 2001 From: Michael Delpach Date: Sun, 3 Jan 2016 04:51:16 +0800 Subject: [PATCH] Wording changes --- ShareX/ApplicationConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ShareX/ApplicationConfig.cs b/ShareX/ApplicationConfig.cs index 78e76f6b4..6569a0952 100644 --- a/ShareX/ApplicationConfig.cs +++ b/ShareX/ApplicationConfig.cs @@ -122,10 +122,10 @@ public ApplicationConfig() [Category("Application"), DefaultValue(false), Description("Show most recent task first in main window.")] public bool ShowMostRecentTaskFirst { get; set; } - [Category("Application"), DefaultValue(false), Description("Default .NET method can't copy image with alpha channel to clipboard. ShareX alternative method copies \"PNG\" and 32 bit \"DIB\" to clipboard to be able to keep image transparency. If this alternative method causing issues then you can use default .NET method.")] + [Category("Application"), DefaultValue(false), Description("Default .NET method can't copy image with alpha channel to clipboard. Alternatively, when this setting is false, ShareX copies \"PNG\" and 32 bit \"DIB\" to clipboard in order to retain image transparency. If you are experiencing issues then set this setting to true to use the default .NET method.")] public bool UseDefaultClipboardCopyImage { get; set; } - [Category("Application"), DefaultValue(false), Description("Default .NET method can't get image with alpha channel from clipboard. ShareX alternative method checks is clipboard contains \"PNG\" or 32 bit \"DIB\" to be able to keep image transparency. If this alternative method causing issues then you can use default .NET method.")] + [Category("Application"), DefaultValue(false), Description("Default .NET method can't get image with alpha channel from clipboard. Alternatively, when this setting is false, ShareX checks if clipboard image contains \"PNG\" or 32 bit \"DIB\" in order to retain image transparency. If you are experiencing issues then set this setting to true to use the default .NET method.")] public bool UseDefaultClipboardGetImage { get; set; } [Category("Application"), DefaultValue(true), Description("Because default .NET image copying not supports alpha channel, background of image will be black. This option will fill background white.")]