diff --git a/trace/tui_app.py b/trace/tui_app.py index 4cbef05..32350c8 100644 --- a/trace/tui_app.py +++ b/trace/tui_app.py @@ -2213,9 +2213,9 @@ class TUI: options = ["GPG Signing", "Select GPG Key", "Save", "Cancel"] curses.curs_set(0) - h = 12 + h = 15 # Increased from 12 to properly show all 4 options + footer w = 60 - y = self.height // 2 - 6 + y = self.height // 2 - 7 # Adjusted to keep centered x = (self.width - w) // 2 win = curses.newwin(h, w, y, x)