mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Merge branch 'master' of https://github.com/SubtitleEdit/subtitleedit
This commit is contained in:
commit
9d929c4e04
@ -14433,7 +14433,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
}
|
||||
|
||||
var fc = FindFocusedControl(this);
|
||||
if (fc != null && e.Modifiers != Keys.Control && e.Modifiers != Keys.Alt && e.Modifiers != (Keys.Control | Keys.Shift) && e.Modifiers != (Keys.Control | Keys.Alt) && e.Modifiers != (Keys.Control | Keys.Shift | Keys.Alt))
|
||||
if (fc != null && (e.Modifiers == Keys.None || e.Modifiers == Keys.Shift))
|
||||
{
|
||||
// do not check for shortcuts if text is being entered and a textbox is focused
|
||||
if ((fc.Parent.Name == textBoxListViewText.Name || fc.Parent.Name == textBoxListViewTextOriginal.Name || fc.Name == textBoxSearchWord.Name) &&
|
||||
|
Loading…
Reference in New Issue
Block a user