From 61273e53901d234cd01a66df728a5c1bdc8a4f32 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 8 Mar 2022 10:32:24 -0600 Subject: [PATCH] making small hover changes --- src/qml/presenter/Presentation.qml | 4 ++++ src/qml/presenter/SongEditor.qml | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/src/qml/presenter/Presentation.qml b/src/qml/presenter/Presentation.qml index b1eae3f..ef879a6 100644 --- a/src/qml/presenter/Presentation.qml +++ b/src/qml/presenter/Presentation.qml @@ -27,9 +27,11 @@ Item { Controls.ToolButton { text: "Grid" + hoverEnabled: true } Controls.ToolButton { text: "Solo" + hoverEnabled: true } Controls.ToolSeparator {} Item { Layout.fillWidth: true } @@ -37,12 +39,14 @@ Item { Controls.ToolButton { text: "Effects" icon.name: "image-auto-adjust" + hoverEnabled: true onClicked: {} } Controls.ToolButton { id: backgroundButton text: "Background" icon.name: "fileopen" + hoverEnabled: true onClicked: backgroundType.open() } } diff --git a/src/qml/presenter/SongEditor.qml b/src/qml/presenter/SongEditor.qml index bd8d403..0601d83 100644 --- a/src/qml/presenter/SongEditor.qml +++ b/src/qml/presenter/SongEditor.qml @@ -26,25 +26,31 @@ Item { model: Qt.fontFamilies() implicitWidth: 300 editable: true + hoverEnabled: true onCurrentTextChanged: showPassiveNotification(currentText) } Controls.SpinBox { editable: true from: 5 to: 72 + hoverEnabled: true } Controls.ComboBox { model: ["Left", "Center", "Right", "Justify"] implicitWidth: 100 + hoverEnabled: true } Controls.ToolButton { text: "B" + hoverEnabled: true } Controls.ToolButton { text: "I" + hoverEnabled: true } Controls.ToolButton { text: "U" + hoverEnabled: true } Controls.ToolSeparator {} Item { Layout.fillWidth: true } @@ -52,12 +58,14 @@ Item { Controls.ToolButton { text: "Effects" icon.name: "image-auto-adjust" + hoverEnabled: true onClicked: {} } Controls.ToolButton { id: backgroundButton text: "Background" icon.name: "fileopen" + hoverEnabled: true onClicked: backgroundType.open() }