File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,8 @@ QtObject {
261261 genericTable: QtObject {
262262 readonly property int headerZOffset: 100
263263 readonly property int padding: 2
264+ readonly property int leftPadding: 5
265+ readonly property int rightPadding: 5
264266 readonly property int borderWidth: 1
265267 readonly property int mouseAreaResizeWidth: 10
266268 readonly property int cellHeight: 25
Original file line number Diff line number Diff line change @@ -216,7 +216,8 @@ Rectangle {
216216 font .bold : isHeaderRow (row)
217217 text: model .display
218218 elide: Text .ElideRight
219- padding: Constants .genericTable .padding
219+ leftPadding: Constants .genericTable .leftPadding
220+ rightPadding: Constants .genericTable .rightPadding
220221 }
221222
222223 MouseArea {
Original file line number Diff line number Diff line change @@ -71,7 +71,8 @@ TableView {
7171 font: tableFont
7272 text: model .display
7373 elide: Text .ElideRight
74- padding: Constants .genericTable .padding
74+ leftPadding: Constants .genericTable .leftPadding
75+ rightPadding: Constants .genericTable .rightPadding
7576 }
7677
7778 MouseArea {
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ MainTab {
9696 Layout .fillHeight : true
9797 border .width : Constants .updateTab .borderWidth
9898 border .color : Constants .genericTable .borderColor
99+ clip: true
99100
100101 ScrollView {
101102 anchors .fill : parent
You can’t perform that action at this time.
0 commit comments