adding ids and changing email in readme

This commit is contained in:
Chris Cochrun 2022-04-22 15:46:11 -05:00
parent 8acf57fc2b
commit bc6f6b0606
2 changed files with 8 additions and 3 deletions

View file

@ -27,13 +27,16 @@ Item {
anchors.fill: parent
Controls.ComboBox {
id: fontBox
model: Qt.fontFamilies()
implicitWidth: 300
editable: true
hoverEnabled: true
flat: true
onCurrentTextChanged: showPassiveNotification(currentText)
}
Controls.SpinBox {
id: fontSizeBox
editable: true
from: 5
to: 72
@ -44,6 +47,7 @@ Item {
model: ["Left", "Center", "Right", "Justify"]
implicitWidth: 100
hoverEnabled: true
flat: true
onActivated: updateHorizontalTextAlignment(currentText.toLowerCase());
}
Controls.ComboBox {
@ -51,6 +55,7 @@ Item {
model: ["Top", "Center", "Bottom"]
implicitWidth: 100
hoverEnabled: true
flat: true
onActivated: updateVerticalTextAlignment(currentText.toLowerCase());
}
Controls.ToolButton {