]> granicus.if.org Git - handbrake/commitdiff
MacGui: only show the global default preset in bold.
authorRodeo <tdskywalker@gmail.com>
Mon, 4 Mar 2013 15:49:16 +0000 (15:49 +0000)
committerRodeo <tdskywalker@gmail.com>
Mon, 4 Mar 2013 15:49:16 +0000 (15:49 +0000)
Previously, if there were 2 default presets (HB and user), both names would be displayed in bold.

git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5305 b64f7644-9d1e-0410-96f1-a4d463321fa5

macosx/Controller.m

index ffe42319ceb44b1be8d917274a42b22f65e4d9c6..b1faa7d0867f40b89033c9c1319b17681397a165 100644 (file)
@@ -6104,12 +6104,12 @@ return YES;
             
             
         }
-        /* We use Bold Text for the HB Default */
-        if ([[item objectForKey:@"Default"] intValue] == 1)// 1 is HB default
+        /* We use bold text for the default preset */
+        if (presetUserDefault == nil &&                    // no User default found
+            [[item objectForKey:@"Default"] intValue] == 1)// 1 is HB default
         {
             txtFont = [NSFont boldSystemFontOfSize: [NSFont smallSystemFontSize]];
         }
-        /* We use Bold Text for the User Specified Default */
         if ([[item objectForKey:@"Default"] intValue] == 2)// 2 is User default
         {
             txtFont = [NSFont boldSystemFontOfSize: [NSFont smallSystemFontSize]];