Skip to content

Commit 8c32534

Browse files
Fix: missing regression command input field (#23)
1 parent 5960986 commit 8c32534

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

idd.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,10 @@ def compose(self) -> ComposeResult:
164164
#yield self.executable_path2
165165

166166
with Horizontal(classes="row3"):
167-
yield self.base_command_bar
168-
yield self.regressed_command_bar
167+
with Vertical():
168+
yield self.base_command_bar
169+
with Vertical():
170+
yield self.regressed_command_bar
169171

170172
with Horizontal(classes="row4"):
171173
yield self.diff_area1

0 commit comments

Comments
 (0)