diff --git a/voxygen/src/hud/bag.rs b/voxygen/src/hud/bag.rs index d5f14adcdb..06b759ed8e 100644 --- a/voxygen/src/hud/bag.rs +++ b/voxygen/src/hud/bag.rs @@ -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(), } }