Web: implement Error for CustomCursorError (#3793)

This commit is contained in:
daxpedda 2024-07-17 02:33:06 +02:00 committed by GitHub
parent 944ab60eda
commit d741c58ac3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -43,6 +43,7 @@ changelog entry.
### Added
- Add `ActiveEventLoop::create_proxy()`.
- On Web, implement `Error` for `platform::web::CustomCursorError`.
### Changed

View file

@ -437,3 +437,5 @@ impl Display for CustomCursorError {
}
}
}
impl Error for CustomCursorError {}