mirror of
https://github.com/greenshot/greenshot
synced 2025-07-30 03:30:02 -07:00
BUG-2081: Fixed that only the + and - of the numpad worked for the canvas resizing.
This commit is contained in:
parent
952e521805
commit
b01eae3794
1 changed files with 3 additions and 1 deletions
|
@ -864,9 +864,11 @@ namespace Greenshot {
|
|||
RotateCwToolstripButtonClick(sender, e);
|
||||
break;
|
||||
case Keys.Add: // Ctrl + +
|
||||
case Keys.Oemplus: // Ctrl + +
|
||||
EnlargeCanvasToolStripMenuItemClick(sender, e);
|
||||
break;
|
||||
case Keys.Subtract: // Ctrl + -
|
||||
case Keys.OemMinus: // Ctrl + -
|
||||
ShrinkCanvasToolStripMenuItemClick(sender, e);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue