From ed9b0dd41bace92528cdda26b1c60fc0fc383ad3 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Tue, 18 Sep 2018 17:25:35 +0200 Subject: [PATCH] Add a missing bracket back. Contributes to CURA-5725. --- plugins/SimulationView/PathSlider.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/SimulationView/PathSlider.qml b/plugins/SimulationView/PathSlider.qml index f532294682..f3c28fb5f7 100644 --- a/plugins/SimulationView/PathSlider.qml +++ b/plugins/SimulationView/PathSlider.qml @@ -42,8 +42,8 @@ Item return handle.getValue() } - function setHandleValue(value - { + function setHandleValue(value) + { handle.setValue(value) updateRangeHandle() }