Render a titlebar you can barely see

Co-Authored-By: Mikayla Maki <mikayla@zed.dev>
This commit is contained in:
Nathan Sobo 2023-08-28 14:24:27 -06:00
parent b5aedc144d
commit fd1633ac4b
4 changed files with 41 additions and 4 deletions

View file

@ -387,3 +387,9 @@ impl Default for Length {
Self::Definite(DefiniteLength::default())
}
}
impl From<()> for Length {
fn from(_: ()) -> Self {
Self::Definite(DefiniteLength::default())
}
}