From 603ab87c47ec471062b442d121e8c485bdf7a3d1 Mon Sep 17 00:00:00 2001 From: Dante Ruiz Date: Mon, 2 Jul 2018 14:38:16 -0700 Subject: [PATCH] fix configuration page --- interface/resources/qml/hifi/tablet/ControllerSettings.qml | 3 +++ interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml | 1 + 2 files changed, 4 insertions(+) diff --git a/interface/resources/qml/hifi/tablet/ControllerSettings.qml b/interface/resources/qml/hifi/tablet/ControllerSettings.qml index 4ad37b7bc8..92b750fa7a 100644 --- a/interface/resources/qml/hifi/tablet/ControllerSettings.qml +++ b/interface/resources/qml/hifi/tablet/ControllerSettings.qml @@ -69,6 +69,7 @@ Item { id: stack initialItem: inputConfiguration property alias messageVisible: imageMessageBox.visible + property string selectedPlugin: "" Rectangle { id: inputConfiguration anchors { @@ -274,6 +275,8 @@ Item { } else { box.label = ""; } + + stack.selectedPlugin = selectedDevice; } Timer { diff --git a/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml b/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml index 20682372c5..c2aff08e35 100644 --- a/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml +++ b/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml @@ -28,6 +28,7 @@ Flickable { onPluginNameChanged: { if (page !== null) { page.pluginName = flick.pluginName; + page.displayConfiguration(); } }