diff --git a/voxygen/src/hud/bag.rs b/voxygen/src/hud/bag.rs index fcdd644d13..e9b18e7f8a 100644 --- a/voxygen/src/hud/bag.rs +++ b/voxygen/src/hud/bag.rs @@ -1,6 +1,6 @@ use super::{ img_ids::{Imgs, ImgsRot}, - Event as HudEvent, Fonts, TEXT_COLOR, TEXT_COLOR_2, + Event as HudEvent, Fonts, TEXT_COLOR, }; use crate::ui::{ImageFrame, Tooltip, TooltipManager, Tooltipable}; use client::Client; @@ -187,7 +187,7 @@ impl<'a> Widget for Bag<'a> { &item.description(), &item.category(), &item_tooltip, - ) + ) .set(state.ids.inv_slots[i], ui) } else { slot_widget.set(state.ids.inv_slots[i], ui) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 2094d683ed..83edafa662 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -35,7 +35,7 @@ use crate::{ render::{Consts, Globals, Renderer}, scene::camera::Camera, settings::ControlSettings, - ui::{Ingameable, ScaleMode, TooltipManager, Ui}, + ui::{Ingameable, ScaleMode, Ui}, window::{Event as WinEvent, GameInput}, GlobalState, };