diff --git a/voxygen/src/hud/settings_window.rs b/voxygen/src/hud/settings_window.rs index bc6a4da576..1fe4289c4b 100644 --- a/voxygen/src/hud/settings_window.rs +++ b/voxygen/src/hud/settings_window.rs @@ -1224,6 +1224,8 @@ impl<'a> Widget for SettingsWindow<'a> { self.imgs.check_checked, &mode_label_list, ) + .hover_images(self.imgs.check_mo, self.imgs.check_checked_mo) + .press_images(self.imgs.check_press, self.imgs.check_press) .down_from(state.ids.aa_mode_text, 8.0) .text_color(TEXT_COLOR) .font_size(12) diff --git a/voxygen/src/render/renderer.rs b/voxygen/src/render/renderer.rs index b64888faf0..3597444726 100644 --- a/voxygen/src/render/renderer.rs +++ b/voxygen/src/render/renderer.rs @@ -821,6 +821,6 @@ fn create_pipeline<'a, P: gfx::pso::PipelineInit>( samples: Some(gfx::state::MultiSample), }, pipe, - )?, // Do some funky things to work around an oddity in gfx's error ownership rules. + )?, }) }