[vlc-commits] qml: add margins inside the KeyNavigableTableView rows

Adrien Maglo git at videolan.org
Thu Jun 13 13:10:40 CEST 2019


vlc | branch: master | Adrien Maglo <magsoft at videolan.org> | Wed Apr 17 11:49:32 2019 +0200| [4497518cca90f9073bb08161c0427fd6d7cd6a14] | committer: Thomas Guillem

qml: add margins inside the KeyNavigableTableView rows

Signed-off-by: Thomas Guillem <thomas at gllm.fr>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4497518cca90f9073bb08161c0427fd6d7cd6a14
---

 modules/gui/qt/qml/utils/KeyNavigableTableView.qml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/modules/gui/qt/qml/utils/KeyNavigableTableView.qml b/modules/gui/qt/qml/utils/KeyNavigableTableView.qml
index d6d9d17f43..3be87f7709 100644
--- a/modules/gui/qt/qml/utils/KeyNavigableTableView.qml
+++ b/modules/gui/qt/qml/utils/KeyNavigableTableView.qml
@@ -73,7 +73,11 @@ NavigableFocusScope {
                     }
 
                     Row {
-                        anchors.fill: parent
+                        anchors {
+                            fill: parent
+                            leftMargin: VLCStyle.margin_normal
+                            rightMargin: VLCStyle.margin_normal
+                        }
 
                         Repeater {
                             model: sortModel



More information about the vlc-commits mailing list