From 72c60bc2289cf2d3594461c379bebb64f32df662 Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Fri, 15 Dec 2017 14:39:43 +0100 Subject: [PATCH] MacGui: move the playlist number at the end of the title string. --- macosx/HBTitle.m | 4 ++-- 1 file 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) { -- 2.40.0