Improve play and quit button visibility

This commit is contained in:
Cameron Gutman
2023-09-02 19:57:08 -05:00
parent b53333d1ba
commit 4a7e43ccb6
6 changed files with 17 additions and 15 deletions

View File

@@ -1,5 +1,6 @@
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
import AppModel 1.0
import ComputerManager 1.0
@@ -121,15 +122,15 @@ CenteredGridView {
anchors.fill: appIcon
sourceComponent: Item {
ToolButton {
RoundButton {
anchors.horizontalCenterOffset: appIcon.isPlaceholder ? -47 : 0
anchors.verticalCenterOffset: appIcon.isPlaceholder ? -75 : -60
anchors.centerIn: parent
implicitWidth: 125
implicitHeight: 125
implicitWidth: 85
implicitHeight: 85
Image {
source: "qrc:/res/baseline-play_circle_filled_white-48px.svg"
source: "qrc:/res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg"
anchors.centerIn: parent
sourceSize {
width: 75
@@ -145,17 +146,19 @@ CenteredGridView {
ToolTip.delay: 1000
ToolTip.timeout: 3000
ToolTip.visible: hovered
Material.background: "#D0808080"
}
ToolButton {
RoundButton {
anchors.horizontalCenterOffset: appIcon.isPlaceholder ? 47 : 0
anchors.verticalCenterOffset: appIcon.isPlaceholder ? -75 : 60
anchors.centerIn: parent
implicitWidth: 125
implicitHeight: 125
implicitWidth: 85
implicitHeight: 85
Image {
source: "qrc:/res/baseline-cancel-24px.svg"
source: "qrc:/res/stop_FILL1_wght700_GRAD200_opsz48.svg"
anchors.centerIn: parent
sourceSize {
width: 75
@@ -171,6 +174,8 @@ CenteredGridView {
ToolTip.delay: 1000
ToolTip.timeout: 3000
ToolTip.visible: hovered
Material.background: "#D0808080"
}
}
}