mirror of
https://github.com/greenshot/greenshot
synced 2025-08-19 21:13:23 -07:00
Checked ClickActions, added the Settings as possible value. Also made sure we log more information if the INI has wrong values.
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2434 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
f20ced15a7
commit
771fc93d6b
3 changed files with 14 additions and 7 deletions
|
@ -44,10 +44,11 @@ namespace GreenshotPlugin.Core {
|
|||
}
|
||||
|
||||
public enum ClickActions {
|
||||
NOTHING,
|
||||
DO_NOTHING,
|
||||
OPEN_LAST_IN_EXPLORER,
|
||||
OPEN_LAST_IN_EDITOR,
|
||||
CONTEXT_MENU
|
||||
OPEN_SETTINGS,
|
||||
SHOW_CONTEXT_MENU
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -212,8 +213,8 @@ namespace GreenshotPlugin.Core {
|
|||
|
||||
[IniProperty("WindowCornerCutShape", Description = "The cutshape which is used to remove the window corners, is mirrorred for all corners", DefaultValue = "5,3,2,1,1")]
|
||||
public List<int> WindowCornerCutShape;
|
||||
|
||||
[IniProperty("LeftClickAction", Description = "Specify what action is made if the tray icon is left clicked, if a double-click action is specified this action is initiated after a delay (configurable via the windows double-click speed)", DefaultValue = "CONTEXT_MENU")]
|
||||
|
||||
[IniProperty("LeftClickAction", Description = "Specify what action is made if the tray icon is left clicked, if a double-click action is specified this action is initiated after a delay (configurable via the windows double-click speed)", DefaultValue = "SHOW_CONTEXT_MENU")]
|
||||
public ClickActions LeftClickAction;
|
||||
|
||||
[IniProperty("DoubleClickAction", Description = "Specify what action is made if the tray icon is double clicked", DefaultValue = "OPEN_LAST_IN_EXPLORER")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue