Fixed Breaking Legacy change

This commit is contained in:
2025-11-10 17:21:18 -05:00
parent 3c2e825210
commit 5cb079dad7
3 changed files with 36 additions and 45 deletions
+3 -2
View File
@@ -80,11 +80,11 @@ class MultiAgentSelector(Widget):
select_buttons.styles.margin = (0, 0, 0, 0)
select_none_button = Button("🚫 Select None", id="select_none")
select_none_button.styles.margin = (1, 0, 0, 1)
select_none_button.styles.margin = (1, 1, 0, 1)
yield select_none_button
select_all_button = Button("✅ Select All", id="select_all")
select_all_button.styles.margin = (1, 1, 0, 1)
select_all_button.styles.margin = (1, 0, 0, 1)
yield select_all_button
with Horizontal() as button_row:
@@ -93,6 +93,7 @@ class MultiAgentSelector(Widget):
back_button = Button("← Back", id="back_button")
back_button.styles.width = "1fr"
back_button.styles.margin = (0, 0, 0, 1)
yield back_button
submit_button = Button(