mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 13:53:38 +02:00
14 lines
237 B
QML
14 lines
237 B
QML
import Hifi 1.0
|
|
import QtQuick 2.3
|
|
|
|
// This is our primary 'window' object to which all dialogs and controls will
|
|
// be childed.
|
|
Root {
|
|
id: root
|
|
anchors.fill: parent
|
|
|
|
onParentChanged: {
|
|
forceActiveFocus();
|
|
}
|
|
}
|
|
|