]> granicus.if.org Git - handbrake/commitdiff
MacGui: move the playlist number at the end of the title string.
authorDamiano Galassi <damiog@gmail.com>
Fri, 15 Dec 2017 13:39:43 +0000 (14:39 +0100)
committerDamiano Galassi <damiog@gmail.com>
Fri, 15 Dec 2017 13:39:43 +0000 (14:39 +0100)
macosx/HBTitle.m

index c5536e9ba2849702073f714799f3bbca5c9fb00e..b75e25117f042e8cca4f7055809ddc99b1bf10c6 100644 (file)
@@ -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)
     {