Working on help

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@1489 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2012-11-15 17:08:40 +00:00
parent 95e0326436
commit 692b76e5b6
2 changed files with 6 additions and 0 deletions

View File

@ -107,6 +107,11 @@ namespace Nikse.SubtitleEdit.Forms
DialogResult = DialogResult.Cancel; DialogResult = DialogResult.Cancel;
else if (e.Shift && e.Control && e.Alt && e.KeyCode == Keys.L) else if (e.Shift && e.Control && e.Alt && e.KeyCode == Keys.L)
Configuration.Settings.Language.Save(); Configuration.Settings.Language.Save();
else if (e.KeyCode == Keys.F1)
{
Utilities.ShowHelp("#translate");
e.SuppressKeyPress = true;
}
} }
} }

View File

@ -151,6 +151,7 @@
this.Controls.Add(this.buttonStart); this.Controls.Add(this.buttonStart);
this.Controls.Add(this.labelUserName); this.Controls.Add(this.labelUserName);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.KeyPreview = true;
this.MaximizeBox = false; this.MaximizeBox = false;
this.MinimizeBox = false; this.MinimizeBox = false;
this.Name = "NetworkStart"; this.Name = "NetworkStart";