Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix onload and onerror parsing error (#3707)
regression error induced by 299b123 where serde default got removed from `load_error` attribute of `ImageData`. ```diff pub struct ImageData { - #[cfg_attr(feature = "serialize", derive(serde::Serialize, serde::Deserialize))] - pub load_error: bool, + inner: Box<dyn HasImageData>, } // ... + struct SerializedImageData { + load_error: bool, + } ```
- Loading branch information