summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services
diff options
context:
space:
mode:
authorsr55 <[email protected]>2020-02-23 12:06:02 +0000
committersr55 <[email protected]>2020-02-23 12:06:31 +0000
commitb203d0dee2677ee9e1a5f8ba5308d5c9543e2c35 (patch)
tree15f643d177f6639a67b337477d8e4768602b032f /win/CS/HandBrakeWPF/Services
parente7933aa70cd94ada86940437e03feb38c98bac29 (diff)
WinGui: Fix a minor cosmetic issue with the title dropdown. Fixes #2645
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r--win/CS/HandBrakeWPF/Services/Scan/Model/Title.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Scan/Model/Title.cs b/win/CS/HandBrakeWPF/Services/Scan/Model/Title.cs
index 2fd980eeb..ac611cfb7 100644
--- a/win/CS/HandBrakeWPF/Services/Scan/Model/Title.cs
+++ b/win/CS/HandBrakeWPF/Services/Scan/Model/Title.cs
@@ -149,7 +149,7 @@ namespace HandBrakeWPF.Services.Scan.Model
get
{
return string.Format(
- "{0}{1} ({2:00}:{3:00}:{4:00}) {5}",
+ "{0} {1} ({2:00}:{3:00}:{4:00}) {5}",
this.TitleNumber,
this.Playlist,
this.Duration.Hours,
@@ -164,7 +164,7 @@ namespace HandBrakeWPF.Services.Scan.Model
get
{
return string.Format(
- "{0}{1} ({2:00}:{3:00}:{4:00})",
+ "{0} {1} ({2:00}:{3:00}:{4:00})",
this.TitleNumber,
this.Playlist,
this.Duration.Hours,
@@ -203,7 +203,7 @@ namespace HandBrakeWPF.Services.Scan.Model
this.Playlist = string.Format(" {0}", this.Playlist);
}
- return string.Format("{0}{1} ({2:00}:{3:00}:{4:00})", this.TitleNumber, this.Playlist, this.Duration.Hours, this.Duration.Minutes, this.Duration.Seconds);
+ return string.Format("{0} {1} ({2:00}:{3:00}:{4:00})", this.TitleNumber, this.Playlist, this.Duration.Hours, this.Duration.Minutes, this.Duration.Seconds);
}
}
} \ No newline at end of file