use symbol font for symbols
This commit is contained in:
parent
207d227342
commit
b7ee4e2dbb
10 changed files with 79 additions and 32 deletions
|
|
@ -26,6 +26,7 @@ QtObject {
|
|||
property color base0F: "#f2cdcd"
|
||||
|
||||
property string fontFamily: "sans-serif"
|
||||
property string iconFontFamily: "Symbols Nerd Font"
|
||||
property int fontSize: 12
|
||||
property real barOpacity: 0.9
|
||||
property int barHeight: 32
|
||||
|
|
@ -51,6 +52,8 @@ QtObject {
|
|||
}
|
||||
if (data.fontFamily)
|
||||
root.fontFamily = data.fontFamily;
|
||||
if (data.iconFontFamily)
|
||||
root.iconFontFamily = data.iconFontFamily;
|
||||
if (data.fontSize)
|
||||
root.fontSize = data.fontSize;
|
||||
if (data.barOpacity !== undefined)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue