mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
29 lines
658 B
QML
29 lines
658 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Material
|
|
import Qt5Compat.GraphicalEffects
|
|
import QtQuick.Layouts
|
|
import ScreenPlay
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property Item modalSource
|
|
|
|
Component.onCompleted: {
|
|
if (App.settings.steamVersion) {
|
|
workshopLoader.setSource("qrc:/qml/ScreenPlayApp/qml/Workshop/SteamWorkshop.qml", {
|
|
"modalSource": modalSource
|
|
});
|
|
} else {
|
|
workshopLoader.setSource("qrc:/qml/ScreenPlayApp/qml/Workshop/Forum.qml");
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
id: workshopLoader
|
|
asynchronous: true
|
|
anchors.fill: parent
|
|
}
|
|
}
|