Make settings fields that can be overridden private

Antonio Scandurra and Nathan Sobo created

Co-Authored-By: Nathan Sobo <nathan@zed.dev>

Change summary

crates/workspace/src/settings.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

crates/workspace/src/settings.rs 🔗

@@ -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>,
 }