From 33c4689b15ccf24b1ec735d8f6bc237c8bd108aa Mon Sep 17 00:00:00 2001 From: Bobby Holley Date: Mon, 25 Jan 2016 18:16:25 -0800 Subject: [PATCH] Stop panicking in a presentational attribute synthesis to let style run. We can live without this for now. --- ports/geckolib/wrapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/geckolib/wrapper.rs b/ports/geckolib/wrapper.rs index 41b2b3ab1bc..054929cea62 100644 --- a/ports/geckolib/wrapper.rs +++ b/ports/geckolib/wrapper.rs @@ -334,7 +334,7 @@ impl<'le> TElement<'le> for GeckoElement<'le> { fn synthesize_presentational_hints_for_legacy_attributes(&self, _hints: &mut V) where V: VecLike>> { - unimplemented!() + // FIXME(bholley) - Need to implement this. } #[inline]