mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
Added the possibility to configure the single & double-click action of the NotifyIcon.
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2433 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
6fadd33549
commit
f20ced15a7
1 changed files with 6 additions and 3 deletions
|
@ -43,7 +43,7 @@ namespace GreenshotPlugin.Core {
|
|||
RELEASE
|
||||
}
|
||||
|
||||
public enum LeftClickActions {
|
||||
public enum ClickActions {
|
||||
NOTHING,
|
||||
OPEN_LAST_IN_EXPLORER,
|
||||
OPEN_LAST_IN_EDITOR,
|
||||
|
@ -213,8 +213,11 @@ 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", DefaultValue = "CONTEXT_MENU")]
|
||||
public LeftClickActions LeftClickAction;
|
||||
[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")]
|
||||
public ClickActions LeftClickAction;
|
||||
|
||||
[IniProperty("DoubleClickAction", Description = "Specify what action is made if the tray icon is double clicked", DefaultValue = "OPEN_LAST_IN_EXPLORER")]
|
||||
public ClickActions DoubleClickAction;
|
||||
|
||||
[IniProperty("ZoomerEnabled", Description = "Sets if the zoomer is enabled", DefaultValue = "True")]
|
||||
public bool ZoomerEnabled;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue