mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-21 18:52:36 +01:00
Add delete key action for "unknown words" in OCR - thx RedSoxFan04 :)
Fix #8227
This commit is contained in:
parent
82b070b0b7
commit
156513f453
@ -8600,6 +8600,13 @@ namespace Nikse.SubtitleEdit.Forms.Ocr
|
||||
// ignored
|
||||
}
|
||||
}
|
||||
|
||||
e.Handled = true;
|
||||
}
|
||||
else if (e.KeyCode == Keys.Delete)
|
||||
{
|
||||
removeAllXToolStripMenuItem_Click(null, null);
|
||||
e.Handled = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user