Merge PR #925: Add ubuntu mono font
commit
6c34541643
|
|
@ -109,6 +109,10 @@
|
|||
<file>ui/fonts/Ubuntu-MI.ttf</file>
|
||||
<file>ui/fonts/Ubuntu-R.ttf</file>
|
||||
<file>ui/fonts/Ubuntu-RI.ttf</file>
|
||||
<file>ui/fonts/UbuntuMono-Bold.ttf</file>
|
||||
<file>ui/fonts/UbuntuMono-BoldItalic.ttf</file>
|
||||
<file>ui/fonts/UbuntuMono-Italic.ttf</file>
|
||||
<file>ui/fonts/UbuntuMono-Regular.ttf</file>
|
||||
<file>qtquickcontrols2.conf</file>
|
||||
<file>../LICENSE.GPL3</file>
|
||||
<file>../LICENSE.CC-BY-SA-3.0</file>
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -364,11 +364,12 @@ SettingsPageBase {
|
|||
rightPadding: Style.margins
|
||||
topPadding: Style.margins
|
||||
bottomPadding: Style.margins
|
||||
font.family: "Monospace"
|
||||
font.family: "UbuntuMono"
|
||||
font.pixelSize: Style.smallFont.pixelSize
|
||||
|
||||
text: {
|
||||
var ret = root.node.manufacturer + "\n"
|
||||
ret += root.node.model + "\n"
|
||||
var ret = "Manufacturer: " + root.node.manufacturer + "\n"
|
||||
ret += "Model: " + root.node.model + "\n"
|
||||
ret += "RxOnWhileIdle: " + root.node.rxOnWhenIdle + "\n"
|
||||
ret += "Basic cluster version: " + root.node.version + "\n"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue