diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index f724f768..ae5e612e 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -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" } } } diff --git a/app/res/baseline-cancel-24px.svg b/app/res/baseline-cancel-24px.svg deleted file mode 100644 index 3d7a7504..00000000 --- a/app/res/baseline-cancel-24px.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/app/res/baseline-play_circle_filled_white-48px.svg b/app/res/baseline-play_circle_filled_white-48px.svg deleted file mode 100644 index af0834e8..00000000 --- a/app/res/baseline-play_circle_filled_white-48px.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/app/res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg b/app/res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg new file mode 100644 index 00000000..b630b2fc --- /dev/null +++ b/app/res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/res/stop_FILL1_wght700_GRAD200_opsz48.svg b/app/res/stop_FILL1_wght700_GRAD200_opsz48.svg new file mode 100644 index 00000000..a0c0a048 --- /dev/null +++ b/app/res/stop_FILL1_wght700_GRAD200_opsz48.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/resources.qrc b/app/resources.qrc index d6196621..fa2220b7 100644 --- a/app/resources.qrc +++ b/app/resources.qrc @@ -4,9 +4,9 @@ res/desktop_windows-48px.svg res/ic_add_to_queue_white_48px.svg res/baseline-lock-24px.svg - res/baseline-play_circle_filled_white-48px.svg + res/play_arrow_FILL1_wght700_GRAD200_opsz48.svg res/baseline-warning-24px.svg - res/baseline-cancel-24px.svg + res/stop_FILL1_wght700_GRAD200_opsz48.svg res/no_app_image.png res/settings.svg res/arrow_left.svg