diff --git a/src/picker.rs b/src/picker.rs index a8f4889..b5eaf5a 100644 --- a/src/picker.rs +++ b/src/picker.rs @@ -44,11 +44,11 @@ const DEFAULT_BACKGROUND: Rgba = Rgba([0, 0, 0, 0]); #[derive(Clone, Debug)] pub struct Picker { - font_size: FontSize, - protocol_type: ProtocolType, - background_color: Rgba, - is_tmux: bool, - capabilities: Vec, + pub font_size: FontSize, + pub protocol_type: ProtocolType, + pub background_color: Rgba, + pub is_tmux: bool, + pub capabilities: Vec, } /// Serde-friendly protocol-type enum for [Picker].