Make default background style opaque

This commit is contained in:
Joscha 2023-02-18 21:24:51 +01:00
parent bdc1549268
commit a8876e94f3

View file

@ -12,7 +12,7 @@ impl<I> Background<I> {
pub fn new(inner: I) -> Self { pub fn new(inner: I) -> Self {
Self { Self {
inner, inner,
style: Style::default(), style: Style::new().opaque(),
} }
} }