summaryrefslogtreecommitdiffstats
path: root/macosx/HBTitle.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2017-12-15 14:39:43 +0100
committerDamiano Galassi <[email protected]>2017-12-15 14:39:43 +0100
commit72c60bc2289cf2d3594461c379bebb64f32df662 (patch)
treefadfdc8f83eff6a1f938b67c4695444d634a4d5f /macosx/HBTitle.m
parent0e06d20f163052004abb16c310b07b46f609ee36 (diff)
MacGui: move the playlist number at the end of the title string.
Diffstat (limited to 'macosx/HBTitle.m')
-rw-r--r--macosx/HBTitle.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBTitle.m b/macosx/HBTitle.m
index c5536e9ba..b75e25117 100644
--- a/macosx/HBTitle.m
+++ b/macosx/HBTitle.m
@@ -89,8 +89,8 @@ extern NSString *keySubTrackType;
{
if (self.hb_title->type == HB_BD_TYPE)
{
- return [NSString stringWithFormat:@"%d (%05d.MPLS) - %@",
- self.hb_title->index, self.hb_title->playlist, self.timeCode];
+ return [NSString stringWithFormat:@"%d - %@ - %05d.MPLS",
+ self.hb_title->index, self.timeCode, self.hb_title->playlist];
}
else if (self.hb_title->type == HB_DVD_TYPE)
{