Skip to content
Merged
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
8 changes: 4 additions & 4 deletions resources/Constants/Constants.qml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ QtObject {
readonly property string fontFamily: "Roboto Condensed"
property FontLoader robotoCondensedLightFont
readonly property string lightFontFamily: robotoCondensedLightFont.name
readonly property real xSmallPointSize: 6
readonly property real smallPointSize: 7
readonly property real mediumPointSize: 8
readonly property real largePointSize: 9
readonly property real xSmallPointSize: Qt.platform.os == "osx" ? 8 : 6
readonly property real smallPointSize: Qt.platform.os == "osx" ? 9 : 7
readonly property real mediumPointSize: Qt.platform.os == "osx" ? 10 : 8
readonly property real largePointSize: Qt.platform.os == "osx" ? 11 : 9
readonly property real xlPointSize: 12
readonly property real xxlPointSize: 14
readonly property bool debugMode: false
Expand Down