From cd25c9807d496728bcd8fc2687d3228d287cad03 Mon Sep 17 00:00:00 2001 From: blasty Date: Fri, 24 Jul 2026 00:28:04 +0200 Subject: ux: fix truncated loading-splash message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "auto-analyzing…" note crammed the "first open of a big binary can take a while" caveat onto one line that overflowed the fixed-width splash box (it showed truncated as "…first open of a big binary can"). Move the caveat to the splash's static help line, keep the dynamic note short, and (in app.py, already committed) widen the box to 72 and let the note/help wrap (height: auto) as a safety net. --- idatui/launch.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'idatui') diff --git a/idatui/launch.py b/idatui/launch.py index 50ad88c..2ecf8b5 100644 --- a/idatui/launch.py +++ b/idatui/launch.py @@ -97,8 +97,7 @@ def _ensure_server(url: str, target: str | None, timeout: float = 90.0, if proc is not None and proc.poll() is not None: note("analysis server exited during startup — check the log") return False - note(f"auto-analyzing {label}… ({int(time.time() - t0)}s) " - f"first open of a big binary can take a while") + note(f"auto-analyzing {label}… ({int(time.time() - t0)}s)") time.sleep(0.5) note(f"analysis did not finish within {timeout:.0f}s") return False -- cgit v1.3.1-sl0p