From 5e2fbae6aa9715f517a061dde0593c158e0a45fd Mon Sep 17 00:00:00 2001 From: edo-neo Date: Wed, 15 Oct 2025 15:26:41 +0200 Subject: [PATCH] dev free_fall --- src/ui/freefall_step_editor/freefall_step_editor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/freefall_step_editor/freefall_step_editor.py b/src/ui/freefall_step_editor/freefall_step_editor.py index 294b000..ba1d409 100644 --- a/src/ui/freefall_step_editor/freefall_step_editor.py +++ b/src/ui/freefall_step_editor/freefall_step_editor.py @@ -8,8 +8,8 @@ class FreeFall_Step_Editor(Editor): self.spec.update({ "filling_time": self.filling_time_sb, "filling_pressure": self.filling_pressure_sb, - # Fix inversion: ensure spec keys map to the correct widgets - "pressure_min": self.pressure_max_sb, - "pressure_max": self.pressure_min_sb, + # Correct mapping: spec keys map to corresponding widgets + "pressure_min": self.pressure_min_sb, + "pressure_max": self.pressure_max_sb, "continuous_filling": self.continuous_filling_cb, })