Minor tweaks to peri height

This commit is contained in:
Emi Simpson 2022-01-03 18:20:30 -05:00
parent c211e79658
commit 4e44e612ab
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ impl Periphery {
pub fn view(&mut self) -> Element<Message> { pub fn view(&mut self) -> Element<Message> {
Image::new(self.image.clone()) Image::new(self.image.clone())
.width(Length::Units(self.w)) .width(Length::Units(self.w))
.height(Length::Units(self.h)) .height(Length::Fill)
.into() .into()
} }
} }