2025-08-06 21:23:09 -07:00
|
|
|
//! 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;
|
2025-09-21 20:18:35 -07:00
|
|
|
|
|
|
|
|
/// Standard footer hint text used by popups.
|
|
|
|
|
pub(crate) const STANDARD_POPUP_HINT_LINE: &str = "Press Enter to confirm or Esc to go back";
|