Commit 41a6243a authored by Nate Weibley's avatar Nate Weibley

Fix font rendering issues via whole integer window geometry

parent eb7cf569
...@@ -45,8 +45,8 @@ Rectangle { ...@@ -45,8 +45,8 @@ Rectangle {
readonly property real _defaultTextHeight: ScreenTools.defaultFontPixelHeight readonly property real _defaultTextHeight: ScreenTools.defaultFontPixelHeight
readonly property real _defaultTextWidth: ScreenTools.defaultFontPixelWidth readonly property real _defaultTextWidth: ScreenTools.defaultFontPixelWidth
readonly property real _margin: _defaultTextHeight / 2 readonly property real _margin: Math.round(_defaultTextHeight / 2)
readonly property real _buttonWidth: _defaultTextWidth * 18 readonly property real _buttonWidth: Math.round(_defaultTextWidth * 18)
readonly property string _armedVehicleText: "This operation cannot be performed while vehicle is armed." readonly property string _armedVehicleText: "This operation cannot be performed while vehicle is armed."
property string _messagePanelText: "missing message panel text" property string _messagePanelText: "missing message panel text"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment