You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
817 B

import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import "../common"
import "camera"
import "steamvrmisc"
MyStackViewPage {
width: 1200
headerText: "Send Wownero"
content: ColumnLayout {
spacing: 16
SteamVRMiscGroupBox {
id: steamVRMiscGroupBox}
CameraGroupBox {
id: cameraGroupBox}
Item { Layout.fillHeight: true; Layout.fillWidth: true}
RowLayout {
Layout.fillWidth: true
Item { Layout.fillWidth: true}
MyPushButton {
id: steamVRRestartButton
text: "Restart SteamVR"
Layout.preferredWidth: 250
onClicked: {
SteamVRTabController.restartSteamVR()
}
}
}
}
}