]> git.sesse.net Git - vlc/commitdiff
macosx: improved font selection in the simple prefs by using the 10.5 API
authorFelix Paul Kühne <fkuehne@videolan.org>
Fri, 20 Feb 2009 23:50:42 +0000 (00:50 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Fri, 20 Feb 2009 23:50:42 +0000 (00:50 +0100)
modules/gui/macosx/simple_prefs.m

index 81dc19231dfb77fd1727096f089038f2975488b8..00011b4460c32b3b9ba68dfdb4c03cdc0e2c05af 100644 (file)
@@ -1059,11 +1059,6 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
             [o_video_snap_folder_fld setStringValue: [o_selectFolderPanel filename]];
             b_videoSettingChanged = YES;
         }
-        else if( contextInfo == o_osd_font_btn )
-        {
-            [o_osd_font_fld setStringValue: [o_selectFolderPanel filename]];
-            b_osdSettingChanged = YES;
-        }
     }
 
     [o_selectFolderPanel release];
@@ -1095,8 +1090,7 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
         NSFont * font = [NSFont fontWithDescriptor:[fd fontDescriptorWithFamily:fontFamilyName] textTransform:nil];
         [[NSFontManager sharedFontManager] setSelectedFont:font isMultiple:NO];
     }
-    [[NSFontManager sharedFontManager] setDelegate: self];
-    [o_sprefs_win makeFirstResponder: o_sprefs_win];
+    [[NSFontManager sharedFontManager] setTarget: self];
     [[NSFontPanel sharedFontPanel] orderFront:self];
 }