Merge pull request #13524 from danteruiz/fix-calibration

fix configuration page
This commit is contained in:
John Conklin II 2018-07-03 13:13:48 -07:00 committed by GitHub
commit 6737647a56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -69,6 +69,7 @@ Item {
id: stack id: stack
initialItem: inputConfiguration initialItem: inputConfiguration
property alias messageVisible: imageMessageBox.visible property alias messageVisible: imageMessageBox.visible
property string selectedPlugin: ""
Rectangle { Rectangle {
id: inputConfiguration id: inputConfiguration
anchors { anchors {
@ -274,6 +275,8 @@ Item {
} else { } else {
box.label = ""; box.label = "";
} }
stack.selectedPlugin = selectedDevice;
} }
Timer { Timer {

View file

@ -28,6 +28,7 @@ Flickable {
onPluginNameChanged: { onPluginNameChanged: {
if (page !== null) { if (page !== null) {
page.pluginName = flick.pluginName; page.pluginName = flick.pluginName;
page.displayConfiguration();
} }
} }