summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorblasty <peter@haxx.in>2026-07-24 21:56:04 +0200
committerblasty <peter@haxx.in>2026-07-24 21:56:04 +0200
commit71b4dd0e9a2d97517c99d7bf6924dc6575140374 (patch)
tree0fe85e3d1e89bc26921d11c7dd72c06400e6afd6 /tests
parentsplit-view phase 1: side-by-side listing <-> pseudocode layout (diff)
downloadida-tui-71b4dd0e9a2d97517c99d7bf6924dc6575140374.tar.gz
ida-tui-71b4dd0e9a2d97517c99d7bf6924dc6575140374.tar.xz
ida-tui-71b4dd0e9a2d97517c99d7bf6924dc6575140374.zip
split: guard toggle behind prompt-active; clear _split in the pilot reset
Two small correctness tidies before phase 2: * action_toggle_split now no-ops while a search/rename/... prompt owns the keyboard (parity with the other app actions; a stray 's' can't split mid-edit). * the pilot reset() clears app._split so split state can't leak into the next scenario if one crashes mid-run.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_scenarios.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_scenarios.py b/tests/test_scenarios.py
index aa0ecbf..cfa3e3a 100644
--- a/tests/test_scenarios.py
+++ b/tests/test_scenarios.py
@@ -227,6 +227,7 @@ class Ctx:
app._pref = "decomp"
if app._active == "hex":
app._active = "decomp"
+ app._split = False
await self.pause(0.02)