6 lines
232 B
Rust
6 lines
232 B
Rust
//! 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;
|