Skip to content
Snippets Groups Projects
Commit a09b4811 authored by Christiaan Janssen's avatar Christiaan Janssen
Browse files

QmlDesigner.PropertyEditor: Font widget

parent 2c007993
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,12 @@ GroupBox { ...@@ -12,8 +12,12 @@ GroupBox {
layout: HorizontalLayout { layout: HorizontalLayout {
Label { Label {
text: "Font" text: "Font"
} }
QFontComboBox { QFontComboBox {
id: fontSelector
currentFont.family:backendValues.font_family.value
onCurrentFontChanged: if (backendValues.font_family.value != currentFont.family)
backendValues.font_family.value = currentFont.family;
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment