1//! Constructor for SelectionState. 2 3use crate::widgets::markdown_widget::state::selection_state::SelectionState; 4 5impl SelectionState { 6 /// Create a new inactive selection state. 7 pub fn new() -> Self { 8 Self::default() 9 } 10}