Ctrl+0 to reset zoom to 100%.

This commit is contained in:
J.D. Purcell 2015-09-30 22:01:11 -04:00
parent ea5e748072
commit b0dec9ac6f

View File

@ -1539,6 +1539,12 @@ namespace Nikse.SubtitleEdit.Controls
{
ZoomOut();
}
else if (e.Modifiers == Keys.Control && e.KeyCode == Keys.D0)
{
ZoomFactor = 1.0;
if (OnZoomedChanged != null)
OnZoomedChanged.Invoke(this, null);
}
else if (e.Modifiers == Keys.None && e.KeyCode == Keys.Z)
{
if (StartPositionSeconds > 0.1)