Make settings fields that can be overridden private

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Antonio Scandurra 2021-11-29 17:08:43 +01:00
parent cc78ae14d4
commit b9edde7b26

View File

@ -9,9 +9,9 @@ pub struct Settings {
pub buffer_font_family: FamilyId,
pub buffer_font_size: f32,
pub tab_size: usize,
pub soft_wrap: SoftWrap,
pub preferred_line_length: u32,
pub overrides: HashMap<String, Override>,
soft_wrap: SoftWrap,
preferred_line_length: u32,
overrides: HashMap<String, Override>,
pub theme: Arc<Theme>,
}