fix fonts

This commit is contained in:
Pfauenauge90 2019-07-04 22:55:23 +02:00
parent 50e15333cd
commit 89cadf27be

View File

@ -28,7 +28,7 @@ pub struct Bag<'a> {
inventory_space: usize,
imgs: &'a Imgs,
_fonts: &'a Fonts,
fonts: &'a Fonts,
#[conrod(common_builder)]
common: widget::CommonBuilder,
}
@ -38,7 +38,7 @@ impl<'a> Bag<'a> {
Self {
inventory_space,
imgs,
_fonts,
fonts,
common: widget::CommonBuilder::default(),
}
}