mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
bcfb188cf2
Fix sidebar
19 lines
350 B
QML
19 lines
350 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Material
|
|
import ScreenPlayWorkshop
|
|
|
|
Window {
|
|
id: root
|
|
width: 1366
|
|
height: 768
|
|
visible: true
|
|
title: qsTr("ScreenPlayWorkshop")
|
|
|
|
Loader {
|
|
anchors.fill: parent
|
|
source:"qrc:/qml/ScreenPlayWorkshop/qml/SteamWorkshop.qml"
|
|
}
|
|
}
|