mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -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
|
@ -860,13 +860,15 @@ namespace Greenshot {
|
|||
case Keys.Oemcomma: // Rotate CCW Ctrl + ,
|
||||
RotateCcwToolstripButtonClick(sender, e);
|
||||
break;
|
||||
case Keys.OemPeriod: // Rotate CW Ctrl + .
|
||||
case Keys.OemPeriod: // Rotate CW Ctrl + .
|
||||
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