From 8ecac58299101286e90aa6dd8174f9864324f042 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 8 Nov 2025 16:35:04 +0000 Subject: [PATCH 1/2] Initial plan From ba1c389c08f9364e2886857c2a7d6f4190d05ac1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 8 Nov 2025 16:40:22 +0000 Subject: [PATCH 2/2] Remove autoscroll behavior when questions are answered Co-authored-by: mcasalaina <1323111+mcasalaina@users.noreply.github.com> --- src/ui/spreadsheet_view.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ui/spreadsheet_view.py b/src/ui/spreadsheet_view.py index bfdc402..42f9b14 100644 --- a/src/ui/spreadsheet_view.py +++ b/src/ui/spreadsheet_view.py @@ -231,10 +231,6 @@ def update_cell( if answer and state == CellState.COMPLETED: self.sheet_data.answers[row_index] = answer - # Auto-scroll to keep active cell visible - if state == CellState.WORKING: - self._auto_scroll_to_row(row_index) - logger.debug(f"Updated cell [{row_index}] to {state.value} with alternating color") def _get_response_text(self, state: CellState, answer: str, agent_name: Optional[str] = None) -> str: