mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Added: CTRL+A in GoToLine.cs
This commit is contained in:
parent
79df6aa4eb
commit
219d28b70e
@ -86,7 +86,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
(e.KeyValue >= 96 && e.KeyValue <= 105))
|
||||
{
|
||||
}
|
||||
else if (e.KeyData == (Keys.Shift | Keys.Home) || e.KeyData == (Keys.Shift | Keys.End))
|
||||
else if (e.KeyData == (Keys.Shift | Keys.Home) || e.KeyData == (Keys.Shift | Keys.End) || e.KeyData == (Keys.Control | Keys.A))
|
||||
{
|
||||
}
|
||||
else if (e.KeyData == (Keys.Control | Keys.V) && Clipboard.GetText(TextDataFormat.UnicodeText).Length > 0)
|
||||
@ -95,7 +95,6 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
int num;
|
||||
if (!int.TryParse(p, out num))
|
||||
{
|
||||
e.Handled = true;
|
||||
e.SuppressKeyPress = true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user