diff --git a/ScreenPlay/qml/Installed/Installed.qml b/ScreenPlay/qml/Installed/Installed.qml index 48832ab4..b7111841 100644 --- a/ScreenPlay/qml/Installed/Installed.qml +++ b/ScreenPlay/qml/Installed/Installed.qml @@ -50,14 +50,6 @@ Item { onTriggered: App.installedListModel.reset() } - Connections { - function onHelperButtonPressed(pos) { - setNavigationItem(pos) - } - - target: loaderHelp.item - } - Connections { function onInstalledLoadingFinished() { checkIsContentInstalled() @@ -74,7 +66,6 @@ Item { Loader { id: loaderHelp active: false - z: 99 anchors.fill: parent source: "qrc:/qml/ScreenPlayApp/qml/Installed/InstalledWelcomeScreen.qml" } diff --git a/ScreenPlay/qml/Installed/InstalledWelcomeScreen.qml b/ScreenPlay/qml/Installed/InstalledWelcomeScreen.qml index ad6cd9e4..c361622e 100644 --- a/ScreenPlay/qml/Installed/InstalledWelcomeScreen.qml +++ b/ScreenPlay/qml/Installed/InstalledWelcomeScreen.qml @@ -7,9 +7,6 @@ import ScreenPlayUtil Item { id: installedUserHelper - - signal helperButtonPressed(var pos) - state: "out" Component.onCompleted: state = "in" @@ -119,7 +116,7 @@ Item { font.pointSize: 16 width: implicitWidth + 20 height: implicitHeight + 10 - icon.source:{ + icon.source: { if (App.settings.steamVersion) { return "qrc:/qml/ScreenPlayApp/assets/icons/icon_steam.svg" } else { @@ -130,7 +127,7 @@ Item { icon.height: 18 onClicked: { if (App.settings.steamVersion) { - helperButtonPressed(1) + App.util.setNavigation("Workshop") } else { Qt.openUrlExternally("https://forum.screen-play.app/") } diff --git a/ScreenPlay/qml/Installed/Sidebar.qml b/ScreenPlay/qml/Installed/Sidebar.qml index 04c1af53..1b7f2d22 100644 --- a/ScreenPlay/qml/Installed/Sidebar.qml +++ b/ScreenPlay/qml/Installed/Sidebar.qml @@ -209,7 +209,6 @@ Item { text: qsTr("Headline") font.family: App.settings.font - font.weight: Font.Thin verticalAlignment: Text.AlignBottom font.pointSize: 16 color: "white" diff --git a/ScreenPlayWorkshop/qml/PopupOffline.qml b/ScreenPlayWorkshop/qml/PopupOffline.qml index 8f4d0241..4a52963e 100644 --- a/ScreenPlayWorkshop/qml/PopupOffline.qml +++ b/ScreenPlayWorkshop/qml/PopupOffline.qml @@ -5,6 +5,8 @@ import QtQuick.Controls.Material import Qt5Compat.GraphicalEffects import ScreenPlayWorkshop import ScreenPlayUtil +import ScreenPlayApp +import ScreenPlay Popup { id: root @@ -62,6 +64,7 @@ Popup { Layout.alignment: Qt.AlignHCenter onClicked: { root.close() + App.util.setNavigation("Installed") } } Item {