[vlc-commits] Qt: set the volume slider text size to 7pt
Daniel Amm
git at videolan.org
Sun May 8 19:58:07 CEST 2016
vlc | branch: master | Daniel Amm <da2424 at t-online.de> | Sat May 7 18:54:14 2016 +0200| [f9f9c6d8b231ada216ea6815a85a3198ab9987c8] | committer: Jean-Baptiste Kempf
Qt: set the volume slider text size to 7pt
Previously, the text size was 9px. So the correct equivalent should be 7pt.
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f9f9c6d8b231ada216ea6815a85a3198ab9987c8
---
modules/gui/qt/util/input_slider.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/qt/util/input_slider.cpp b/modules/gui/qt/util/input_slider.cpp
index 48a741d..1df342b 100644
--- a/modules/gui/qt/util/input_slider.cpp
+++ b/modules/gui/qt/util/input_slider.cpp
@@ -626,7 +626,7 @@ SoundSlider::SoundSlider( QWidget *_parent, float _i_step,
( background.saturation() + foreground.saturation() ) / 2,
( background.value() + foreground.value() ) / 2 );
- textfont.setPointSize( 8 );
+ textfont.setPointSize( 7 );
textrect.setRect( 0, 0, 34.0*scalingFactorX, 15.0*scalingFactorY );
/* Regular colors */
More information about the vlc-commits
mailing list