From eef97c482956d6ce084886dc87f7fde90ceda5cd Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Thu, 16 Sep 2010 17:50:46 +0200 Subject: [PATCH] MacOS: fix equalizer 170Hz issue Close #4177 --- modules/gui/macosx/equalizer.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/macosx/equalizer.m b/modules/gui/macosx/equalizer.m index 1809b1f7ee..2606673d66 100644 --- a/modules/gui/macosx/equalizer.m +++ b/modules/gui/macosx/equalizer.m @@ -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] ]; -- 2.39.2