From 49a90e04171f616f73d168a4f8cf150dd6fb5b36 Mon Sep 17 00:00:00 2001 From: Jaex Date: Mon, 7 Dec 2015 06:28:33 +0200 Subject: [PATCH] TrayLeftClickAction default to WindowRectangle --- ShareX/ApplicationConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShareX/ApplicationConfig.cs b/ShareX/ApplicationConfig.cs index 4fd579e90..6302b1f98 100644 --- a/ShareX/ApplicationConfig.cs +++ b/ShareX/ApplicationConfig.cs @@ -139,7 +139,7 @@ public ApplicationConfig() [Category("Application"), DefaultValue(true), Description("Automatically expand capture menu when you open the tray menu.")] public bool TrayAutoExpandCaptureMenu { get; set; } - [Category("Application"), DefaultValue(HotkeyType.RectangleRegion), Description("You can set which action to happen when you left click tray icon."), TypeConverter(typeof(EnumDescriptionConverter))] + [Category("Application"), DefaultValue(HotkeyType.WindowRectangle), Description("You can set which action to happen when you left click tray icon."), TypeConverter(typeof(EnumDescriptionConverter))] public HotkeyType TrayLeftClickAction { get; set; } [Category("Application"), DefaultValue(HotkeyType.PrintScreen), Description("You can set which action to happen when you middle click tray icon."), TypeConverter(typeof(EnumDescriptionConverter))]