We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c0f085 commit f9815d3Copy full SHA for f9815d3
1 file changed
qml/Application.qml
@@ -153,9 +153,9 @@ ApplicationWindow {
153
console.log("Camera orientation changed to: " + applicationSettings.cameraOrientation)
154
}
155
156
- settingsMenu.comboBoxNeuralNetworkRuntime.onCurrentIndexChanged:
+ settingsMenu.comboBoxNeuralNetworkRuntime.onCurrentValueChanged:
157
{
158
- applicationSettings.neuralNetworkRuntime = settingsMenu.comboBoxNeuralNetworkRuntime.currentValue
+ applicationSettings.neuralNetworkRuntime = String(settingsMenu.comboBoxNeuralNetworkRuntime.currentValue)
159
console.log("Neural network runtime changed to: " + applicationSettings.neuralNetworkRuntime)
160
161
0 commit comments