You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, these are crashing our app. Can this crate provide fallible versions of these which return a Result instead so that we can recover from this error in a non-panicking way?
The text was updated successfully, but these errors were encountered:
I'm happy to make a PR if desired. Perhaps an analogous set of methods like try_get_font(&self, index: u32) -> Result<Font>, etc. can be added alongside the existing ones?
Hello, there are several
assert!
s infont_family::FontFamily
, eg:dwrote-rs/src/font_family.rs
Line 75 in 771b2e1
Unfortunately, these are crashing our app. Can this crate provide fallible versions of these which return a
Result
instead so that we can recover from this error in a non-panicking way?The text was updated successfully, but these errors were encountered: