Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions resources/Constants/Constants.qml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ QtObject {
})
readonly property string infoButtonIconPath: "qrc:/images/fontawesome/info-circle-solid.svg"
readonly property color infoButtonIconColor: swiftLightGrey
readonly property int height: 50
}

logoPopup: QtObject {
Expand Down Expand Up @@ -261,6 +262,8 @@ QtObject {
genericTable: QtObject {
readonly property int headerZOffset: 100
readonly property int padding: 2
readonly property int leftPadding: 5
readonly property int rightPadding: 5
readonly property int borderWidth: 1
readonly property int mouseAreaResizeWidth: 10
readonly property int cellHeight: 25
Expand Down
3 changes: 2 additions & 1 deletion resources/SettingsTabComponents/SettingsTable.qml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ Rectangle {
font.bold: isHeaderRow(row)
text: model.display
elide: Text.ElideRight
padding: Constants.genericTable.padding
leftPadding: Constants.genericTable.leftPadding
rightPadding: Constants.genericTable.rightPadding
}

MouseArea {
Expand Down
3 changes: 2 additions & 1 deletion resources/TableComponents/SwiftTableView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ TableView {
font: tableFont
text: model.display
elide: Text.ElideRight
padding: Constants.genericTable.padding
leftPadding: Constants.genericTable.leftPadding
rightPadding: Constants.genericTable.rightPadding
}

MouseArea {
Expand Down
1 change: 1 addition & 0 deletions resources/UpdateTab.qml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ MainTab {
Layout.fillHeight: true
border.width: Constants.updateTab.borderWidth
border.color: Constants.genericTable.borderColor
clip: true

ScrollView {
anchors.fill: parent
Expand Down
1 change: 1 addition & 0 deletions resources/view.qml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ ApplicationWindow {
// be slid up "under" the window.
anchors.left: parent.left
anchors.right: parent.right
height: Constants.tabInfoBar.height
z: 2
tabName: sideNavBar.currentTabName
subTabNames: mainTabs.subTabNames
Expand Down