making small hover changes
This commit is contained in:
parent
4c84fdc614
commit
61273e5390
2 changed files with 12 additions and 0 deletions
|
@ -27,9 +27,11 @@ Item {
|
||||||
|
|
||||||
Controls.ToolButton {
|
Controls.ToolButton {
|
||||||
text: "Grid"
|
text: "Grid"
|
||||||
|
hoverEnabled: true
|
||||||
}
|
}
|
||||||
Controls.ToolButton {
|
Controls.ToolButton {
|
||||||
text: "Solo"
|
text: "Solo"
|
||||||
|
hoverEnabled: true
|
||||||
}
|
}
|
||||||
Controls.ToolSeparator {}
|
Controls.ToolSeparator {}
|
||||||
Item { Layout.fillWidth: true }
|
Item { Layout.fillWidth: true }
|
||||||
|
@ -37,12 +39,14 @@ Item {
|
||||||
Controls.ToolButton {
|
Controls.ToolButton {
|
||||||
text: "Effects"
|
text: "Effects"
|
||||||
icon.name: "image-auto-adjust"
|
icon.name: "image-auto-adjust"
|
||||||
|
hoverEnabled: true
|
||||||
onClicked: {}
|
onClicked: {}
|
||||||
}
|
}
|
||||||
Controls.ToolButton {
|
Controls.ToolButton {
|
||||||
id: backgroundButton
|
id: backgroundButton
|
||||||
text: "Background"
|
text: "Background"
|
||||||
icon.name: "fileopen"
|
icon.name: "fileopen"
|
||||||
|
hoverEnabled: true
|
||||||
onClicked: backgroundType.open()
|
onClicked: backgroundType.open()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,25 +26,31 @@ Item {
|
||||||
model: Qt.fontFamilies()
|
model: Qt.fontFamilies()
|
||||||
implicitWidth: 300
|
implicitWidth: 300
|
||||||
editable: true
|
editable: true
|
||||||
|
hoverEnabled: true
|
||||||
onCurrentTextChanged: showPassiveNotification(currentText)
|
onCurrentTextChanged: showPassiveNotification(currentText)
|
||||||
}
|
}
|
||||||
Controls.SpinBox {
|
Controls.SpinBox {
|
||||||
editable: true
|
editable: true
|
||||||
from: 5
|
from: 5
|
||||||
to: 72
|
to: 72
|
||||||
|
hoverEnabled: true
|
||||||
}
|
}
|
||||||
Controls.ComboBox {
|
Controls.ComboBox {
|
||||||
model: ["Left", "Center", "Right", "Justify"]
|
model: ["Left", "Center", "Right", "Justify"]
|
||||||
implicitWidth: 100
|
implicitWidth: 100
|
||||||
|
hoverEnabled: true
|
||||||
}
|
}
|
||||||
Controls.ToolButton {
|
Controls.ToolButton {
|
||||||
text: "B"
|
text: "B"
|
||||||
|
hoverEnabled: true
|
||||||
}
|
}
|
||||||
Controls.ToolButton {
|
Controls.ToolButton {
|
||||||
text: "I"
|
text: "I"
|
||||||
|
hoverEnabled: true
|
||||||
}
|
}
|
||||||
Controls.ToolButton {
|
Controls.ToolButton {
|
||||||
text: "U"
|
text: "U"
|
||||||
|
hoverEnabled: true
|
||||||
}
|
}
|
||||||
Controls.ToolSeparator {}
|
Controls.ToolSeparator {}
|
||||||
Item { Layout.fillWidth: true }
|
Item { Layout.fillWidth: true }
|
||||||
|
@ -52,12 +58,14 @@ Item {
|
||||||
Controls.ToolButton {
|
Controls.ToolButton {
|
||||||
text: "Effects"
|
text: "Effects"
|
||||||
icon.name: "image-auto-adjust"
|
icon.name: "image-auto-adjust"
|
||||||
|
hoverEnabled: true
|
||||||
onClicked: {}
|
onClicked: {}
|
||||||
}
|
}
|
||||||
Controls.ToolButton {
|
Controls.ToolButton {
|
||||||
id: backgroundButton
|
id: backgroundButton
|
||||||
text: "Background"
|
text: "Background"
|
||||||
icon.name: "fileopen"
|
icon.name: "fileopen"
|
||||||
|
hoverEnabled: true
|
||||||
onClicked: backgroundType.open()
|
onClicked: backgroundType.open()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue