diff options
author | sr55 <[email protected]> | 2017-12-25 17:01:17 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-12-25 17:01:17 +0000 |
commit | de47c6c4b9198c951a3160802158aa1c0beff604 (patch) | |
tree | 095ce5ccf1c4a178709fb9a4bf27da46386b9be9 /win/CS/HandBrakeWPF/Services/Scan/LibScan.cs | |
parent | 0ee7c489ca5c0408877d304b65cb1d92160af807 (diff) |
WinGui: Display Source Names in the Title Dropdown (only when open), when we are not scanning a DVD / Bluray.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Scan/LibScan.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Scan/LibScan.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs b/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs index beceb9361..7558bc163 100644 --- a/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs +++ b/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs @@ -388,7 +388,8 @@ namespace HandBrakeWPF.Services.Scan MainTitle = titles.MainFeature == title.Index, Playlist = title.Type == 1 ? string.Format(" {0:d5}.MPLS", title.Playlist).Trim() : null, FramerateNumerator = title.FrameRate.Num, - FramerateDenominator = title.FrameRate.Den + FramerateDenominator = title.FrameRate.Den, + Type = title.Type }; int currentTrack = 1; |