slint/sixtyfps_runtime/rendering_backends/gl
Simon Hausmann ce62cce266 Internal cleanup: Simplify some Option handling
Replace

   if let Some(Some(Foo)) = bar.map(|some_weak| weak.upgrade())

with

   if let Some(Foo) = bar.and_then(|some_weak| weak.upgrade())
2021-09-01 18:29:32 +02:00
..
fonts Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
Cargo.toml Apply pre-commit hooks to all files 2021-08-17 22:38:16 +02:00
event_loop.rs Internal cleanup: Simplify some Option handling 2021-09-01 18:29:32 +02:00
fonts.rs A few fixup for the multi-line edit 2021-09-01 16:52:37 +02:00
graphics_window.rs Unify mouse input event and draw handling between Qt and the GL backend 2021-09-01 18:20:23 +02:00
images.rs Remove imgref dependency from the public Image API 2021-08-10 15:56:01 +02:00
lib.rs Internal cleanup: Centralize code to determine default font properties 2021-09-01 18:20:23 +02:00
svg.rs Janitor: Fix clippy::needless_borrow 2021-08-04 22:50:35 +02:00