diff options
author | sr55 <[email protected]> | 2013-08-29 16:02:06 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-08-29 16:02:06 +0000 |
commit | aa6b8386ae5372a42ba515a707bb7f61e1fcdb4e (patch) | |
tree | 37f2641d8b899c764aafcb3162a1702dfb3525e8 /win/CS/HandBrake.ApplicationServices | |
parent | bfd79c7ca947ec205a238a334bfe7f37fd40bb21 (diff) |
Interop: Add Path to the Title object
WinGui: Set the SourceName in the Title object so auto-naming works correctly for folder scans.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5757 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/LibScan.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs index 83e4fe5ca..ca8a4f233 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs @@ -409,7 +409,8 @@ namespace HandBrake.ApplicationServices.Services AngleCount = title.AngleCount,
ParVal = new Size(title.ParVal.Width, title.ParVal.Height),
AutoCropDimensions = title.AutoCropDimensions,
- Fps = title.Framerate
+ Fps = title.Framerate,
+ SourceName = title.Path,
};
foreach (Interop.SourceData.Chapter chapter in title.Chapters)
|