From 227b30e3744d0e6f5cfaf1329ceb80a116eceada Mon Sep 17 00:00:00 2001 From: "Martijn van Berkel (Flitskikker)" Date: Fri, 18 Oct 2024 22:29:53 +0200 Subject: [PATCH] Initially browse for shot cuts in video folder --- src/ui/Forms/ShotChanges/ImportShotChanges.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/Forms/ShotChanges/ImportShotChanges.cs b/src/ui/Forms/ShotChanges/ImportShotChanges.cs index c9b723977..0c93a9954 100644 --- a/src/ui/Forms/ShotChanges/ImportShotChanges.cs +++ b/src/ui/Forms/ShotChanges/ImportShotChanges.cs @@ -94,6 +94,7 @@ namespace Nikse.SubtitleEdit.Forms.ShotChanges "|JSON shot changes file|*.json" + "|" + LanguageSettings.Current.General.AllFiles + "|*.*"; openFileDialog1.FileName = string.Empty; + openFileDialog1.InitialDirectory = Path.GetDirectoryName(_videoFileName); if (openFileDialog1.ShowDialog() == DialogResult.OK) { LoadTextFile(openFileDialog1.FileName);