mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 11:42:36 +01:00
Fix async method declaration in Main.cs
Corrected the placement of 'async' keyword in videoInfoToolStripMenuItem_Click method. This ensures proper asynchronous execution and fixes potential issues related to event handling. Signed-off-by: Ivandro Jao <Ivandrofly@gmail.com>
This commit is contained in:
parent
add6580a3e
commit
d33b458fb7
@ -36887,7 +36887,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
});
|
||||
}
|
||||
|
||||
private void async videoInfoToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
private async void videoInfoToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (string.IsNullOrEmpty(_videoFileName) || _videoInfo == null)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user