Make settings fields that can be overridden private
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
parent
cc78ae14d4
commit
b9edde7b26
1 changed files with 3 additions and 3 deletions
|
@ -9,9 +9,9 @@ pub struct Settings {
|
||||||
pub buffer_font_family: FamilyId,
|
pub buffer_font_family: FamilyId,
|
||||||
pub buffer_font_size: f32,
|
pub buffer_font_size: f32,
|
||||||
pub tab_size: usize,
|
pub tab_size: usize,
|
||||||
pub soft_wrap: SoftWrap,
|
soft_wrap: SoftWrap,
|
||||||
pub preferred_line_length: u32,
|
preferred_line_length: u32,
|
||||||
pub overrides: HashMap<String, Override>,
|
overrides: HashMap<String, Override>,
|
||||||
pub theme: Arc<Theme>,
|
pub theme: Arc<Theme>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue