From 480b920fa39b130168773c0dc8b4637d46eba42a Mon Sep 17 00:00:00 2001 From: Pfauenauge90 <44173739+Pfauenauge90@users.noreply.github.com> Date: Fri, 17 Jan 2020 23:47:59 +0100 Subject: [PATCH] skillbar background fix --- voxygen/src/hud/skillbar.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/voxygen/src/hud/skillbar.rs b/voxygen/src/hud/skillbar.rs index 2048ca37cf..76cf9a7dba 100644 --- a/voxygen/src/hud/skillbar.rs +++ b/voxygen/src/hud/skillbar.rs @@ -550,7 +550,7 @@ impl<'a> Widget for Skillbar<'a> { // M1 Slot Image::new(self.imgs.skillbar_slot_big_bg) - .w_h(36.0 * scale, 36.0 * scale) + .w_h(38.0 * scale, 38.0 * scale) .color(match self.stats.equipment.main.as_ref().map(|i| &i.kind) { Some(ItemKind::Tool { kind, .. }) => match kind { Tool::Bow => Some(BG_COLOR_2), @@ -615,7 +615,7 @@ impl<'a> Widget for Skillbar<'a> { } Image::new(self.imgs.skillbar_slot_big_bg) - .w_h(36.0 * scale, 36.0 * scale) + .w_h(38.0 * scale, 38.0 * scale) .color(match self.stats.equipment.main.as_ref().map(|i| &i.kind) { Some(ItemKind::Tool { kind, .. }) => match kind { Tool::Bow => Some(BG_COLOR_2), @@ -726,7 +726,7 @@ impl<'a> Widget for Skillbar<'a> { } } Image::new(self.imgs.skillbar_slot_bg) - .w_h(19.0 * scale, 19.0 * scale) + .w_h(19.5 * scale, 19.5 * scale) .color(Some(BG_COLOR)) .middle_of(state.ids.slot1) .set(state.ids.slot1_bg, ui);