]> git.sesse.net Git - vlc/commitdiff
MacOS: fix equalizer 170Hz issue
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 16 Sep 2010 15:50:46 +0000 (17:50 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 16 Sep 2010 15:50:46 +0000 (17:50 +0200)
Close #4177

modules/gui/macosx/equalizer.m

index 1809b1f7ee0d29e3d0ad40b6e895927ccf97cbae..2606673d6647c33fc34eefa88c179e0a80663c3e 100644 (file)
@@ -230,7 +230,7 @@ static bool GetFiltersStatus( intf_thread_t *p_intf,
         p_object = vlc_object_hold(pl_Get( p_intf ));
 
     const char *psz_values;
-    NSString *preset = [NSString stringWithFormat:@"%.1f", [o_slider_band1 floatValue] ];
+    NSString *preset = [NSString stringWithFormat:@"%.1f ", [o_slider_band1 floatValue] ];
     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band2 floatValue] ];
     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band3 floatValue] ];
     preset = [preset stringByAppendingFormat:@"%.1f ", [o_slider_band4 floatValue] ];