diff --git a/docs/kcl-lang/settings/user.md b/docs/kcl-lang/settings/user.md index 6de362a10..3d689b2d3 100644 --- a/docs/kcl-lang/settings/user.md +++ b/docs/kcl-lang/settings/user.md @@ -87,7 +87,7 @@ Whether to show the debug panel, which lets you see various states of the app to ##### fixed_size_grid -If true, the grid cells will be fixed-size, where the width is the user's default length unit. If false, the grid's size will scale as the user zooms in and out. +If true, the grid cells will be fixed-size, where the width is your default length unit. If false, the grid will get larger as you zoom out, and smaller as you zoom in. **Default:** true diff --git a/rust/kcl-lib/src/settings/types/mod.rs b/rust/kcl-lib/src/settings/types/mod.rs index b98a7808e..e2b9a137c 100644 --- a/rust/kcl-lib/src/settings/types/mod.rs +++ b/rust/kcl-lib/src/settings/types/mod.rs @@ -94,8 +94,8 @@ pub struct AppSettings { /// of the app to aid in development. #[serde(default, skip_serializing_if = "is_default")] pub show_debug_panel: bool, - /// If true, the grid cells will be fixed-size, where the width is the user's default length unit. - /// If false, the grid's size will scale as the user zooms in and out. + /// If true, the grid cells will be fixed-size, where the width is your default length unit. + /// If false, the grid will get larger as you zoom out, and smaller as you zoom in. #[serde(default = "make_it_so")] pub fixed_size_grid: bool, }