fixed #4170: Only allow monitor capture keybinds in region capture mode

This commit is contained in:
Jaex 2019-06-14 19:18:39 +03:00
parent 7bf8f07560
commit f937a5d093

View file

@ -575,7 +575,7 @@ internal void RegionCaptureForm_KeyDown(object sender, KeyEventArgs e)
break;
}
if (e.KeyData >= Keys.D0 && e.KeyData <= Keys.D9)
if (!IsEditorMode && e.KeyData >= Keys.D0 && e.KeyData <= Keys.D9)
{
MonitorKey(e.KeyData - Keys.D0);
return;