diff options
author | sr55 <[email protected]> | 2009-09-14 15:07:37 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-09-14 15:07:37 +0000 |
commit | 39d10e17c924480e007ab0ed6940fb8ef35a2688 (patch) | |
tree | 59c45e5662c8a6b5b5158e4eac8a9c5d7ca30bea /win/C#/Functions | |
parent | b33262144205a4bd058d92a78fe48b8055b1de27 (diff) |
WinGui:
- Fix: DVD volume name now used for autoName function rather than Video_TS folder. (Thanks RandomEngy)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2820 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/Main.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/Main.cs b/win/C#/Functions/Main.cs index dd618cb52..6f8efaa2b 100644 --- a/win/C#/Functions/Main.cs +++ b/win/C#/Functions/Main.cs @@ -130,7 +130,7 @@ namespace Handbrake.Functions if (mainWindow.drp_dvdtitle.Text != "Automatic")
{
// Get the Source Name
- string sourceName = Path.GetFileNameWithoutExtension(mainWindow.sourcePath);
+ string sourceName = mainWindow.SourceName;
// Get the Selected Title Number
string[] titlesplit = mainWindow.drp_dvdtitle.Text.Split(' ');
|