Files
llmx/codex-rs/tui/src/bottom_pane/popup_consts.rs

6 lines
232 B
Rust
Raw Normal View History

//! Shared popup-related constants for bottom pane widgets.
/// Maximum number of rows any popup should attempt to display.
/// Keep this consistent across all popups for a uniform feel.
pub(crate) const MAX_POPUP_ROWS: usize = 8;