mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 15:33:21 +02:00
24 lines
471 B
QML
24 lines
471 B
QML
// root.qml
|
|
|
|
import QtQuick 2.3
|
|
import QtQuick.Controls 2.1
|
|
import HQLauncher 1.0
|
|
import "HFControls"
|
|
Item {
|
|
id: root
|
|
width: 515
|
|
height: 390
|
|
//source: "../images/hifi_window@2x.png"
|
|
|
|
Loader {
|
|
anchors.fill: parent
|
|
id: loader
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
loader.source = LauncherState.getCurrentUISource();
|
|
LauncherState.updateSourceUrl.connect(function(url) {
|
|
loader.source = url;
|
|
});
|
|
}
|
|
}
|