From 90b3e2c1d474be69ef56e36dccb31944e5fd06a7 Mon Sep 17 00:00:00 2001 From: Furgo <148809153+furgo16@users.noreply.github.com> Date: Mon, 5 May 2025 00:09:40 +0200 Subject: [PATCH] BIM: create wall upon pressing Enter with focused Offset input --- src/Mod/BIM/bimcommands/BimWall.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mod/BIM/bimcommands/BimWall.py b/src/Mod/BIM/bimcommands/BimWall.py index fecef4a388..b4b7e836bd 100644 --- a/src/Mod/BIM/bimcommands/BimWall.py +++ b/src/Mod/BIM/bimcommands/BimWall.py @@ -373,6 +373,7 @@ class Arch_Wall: inputWidth.returnPressed.connect(inputHeight.setFocus) inputWidth.returnPressed.connect(inputHeight.selectAll) inputHeight.returnPressed.connect(self.createFromGUI) + inputOffset.returnPressed.connect(self.createFromGUI) return w