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:
Ivandro Jao 2024-10-10 18:38:10 +01:00
parent add6580a3e
commit d33b458fb7

View File

@ -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)
{