Merge branch 'main' into zed2-workspace

This commit is contained in:
Mikayla 2023-11-01 11:46:28 -07:00
commit e82d8eb5b8
No known key found for this signature in database
126 changed files with 9905 additions and 7210 deletions

View file

@ -571,6 +571,12 @@ impl<'a> WindowContext<'a> {
self.window.rem_size
}
/// Sets the size of an em for the base font of the application. Adjusting this value allows the
/// UI to scale, just like zooming a web page.
pub fn set_rem_size(&mut self, rem_size: impl Into<Pixels>) {
self.window.rem_size = rem_size.into();
}
/// The line height associated with the current text style.
pub fn line_height(&self) -> Pixels {
let rem_size = self.rem_size();