Wording changes

This commit is contained in:
Michael Delpach 2016-01-03 04:51:16 +08:00
parent d8d379a04f
commit c28ca73142

View file

@ -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.")]