1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-06 19:12:30 +01:00
ScreenPlay/ScreenPlayWorkshop/qml/Workshop.qml

29 lines
664 B
QML
Raw Normal View History

import QtQuick
import QtQuick.Controls
import QtQuick.Controls.Material
import Qt5Compat.GraphicalEffects
import QtQuick.Layouts
import ScreenPlayApp
Item {
id: root
property Item modalSource
Component.onCompleted: {
if (App.globalVariables.isSteamVersion()) {
2023-02-02 15:25:26 +01:00
workshopLoader.setSource("qrc:/qml/ScreenPlayApp/qml/Workshop/SteamWorkshop.qml", {
"modalSource": modalSource
});
} else {
2023-02-02 15:25:26 +01:00
workshopLoader.setSource("qrc:/qml/ScreenPlayApp/qml/Workshop/Forum.qml");
}
}
Loader {
id: workshopLoader
asynchronous: true
anchors.fill: parent
}
}