AA mode UI improvements

This commit is contained in:
Imbris 2019-09-26 23:40:58 -04:00
parent a3daa6065a
commit 799e962663
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -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.
)?,
})
}