fix(settings): wrong title text size for control

This commit is contained in:
Michael Aaron Murphy 2023-02-03 22:25:57 +01:00
parent eb519782ac
commit 8232e1d249
No known key found for this signature in database
GPG key ID: B2732D4240C9212C

View file

@ -70,7 +70,7 @@ impl<'a, Message: 'static> Item<'a, Message> {
contents.push(column!(title, desc).spacing(2).into());
} else {
contents.push(text(self.title).into());
contents.push(text(self.title).size(20).into());
}
contents.push(horizontal_space(iced::Length::Fill).into());