Skip to content

Commit f9815d3

Browse files
committed
fix assignment
1 parent 1c0f085 commit f9815d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

qml/Application.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ ApplicationWindow {
153153
console.log("Camera orientation changed to: " + applicationSettings.cameraOrientation)
154154
}
155155

156-
settingsMenu.comboBoxNeuralNetworkRuntime.onCurrentIndexChanged:
156+
settingsMenu.comboBoxNeuralNetworkRuntime.onCurrentValueChanged:
157157
{
158-
applicationSettings.neuralNetworkRuntime = settingsMenu.comboBoxNeuralNetworkRuntime.currentValue
158+
applicationSettings.neuralNetworkRuntime = String(settingsMenu.comboBoxNeuralNetworkRuntime.currentValue)
159159
console.log("Neural network runtime changed to: " + applicationSettings.neuralNetworkRuntime)
160160
}
161161

0 commit comments

Comments
 (0)