[vlc-commits] qml: reduce video cover size
Pierre Lamot
git at videolan.org
Fri Jan 10 15:06:49 CET 2020
vlc | branch: master | Pierre Lamot <pierre at videolabs.io> | Thu Dec 19 15:53:42 2019 +0100| [739ddf9b19e628ea8b0644ecc686a51dd2c22a61] | committer: Jean-Baptiste Kempf
qml: reduce video cover size
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=739ddf9b19e628ea8b0644ecc686a51dd2c22a61
---
modules/gui/qt/style/VLCStyle.qml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt/style/VLCStyle.qml b/modules/gui/qt/style/VLCStyle.qml
index 576e327f1e..2deed0e2f7 100644
--- a/modules/gui/qt/style/VLCStyle.qml
+++ b/modules/gui/qt/style/VLCStyle.qml
@@ -107,9 +107,9 @@ Item {
property int scrollbarHeight: 100 * scale;
property int selectedBorder: 2
- property real video_normal_height: 160 * scale;
- property real video_large_height: 200 * scale;
- property real video_small_height: 80 * scale;
+ property real video_normal_height: 90 * scale;
+ property real video_large_height: 120 * scale;
+ property real video_small_height: 70 * scale;
property real video_normal_width: video_normal_height * (16/10);
property real video_large_width: video_large_height * (16/10);
property real video_small_width: video_small_height * (16/10);
More information about the vlc-commits
mailing list