Ashish Myles
Ashish Myles
1. Could this issue serve as the feature request? 2. Is there a requisite state that OrbTk needs to get into before, say, one can contribute to keyboard accessibilty? I...
The [ARIA web accessibility spec](https://www.w3.org/TR/wai-aria-practices-1.1/) would be a good reference for the keyboard and focus behavior for specific widgets. Though it's focused on the web, most of these specs are...
I'm seeing the same error here: https://flow.org/try/#0MYewdgzgLgBAJgUwGYBsoEYYF4ZIK5jBQCW4APACoB8AFBAlCWAOYBcMFMAPjAG4jE4AGnjIAhnjQBJJAFUwiJMTAI47CgEp2AKhgBvAFAxjMAE4M8psDHqNlzbFhwFFy1TAD8opBOlyFyG5wMOy2TMwA3AYAvlGgkLCKaABM2LgERKRglLRh9urcfALC3r5QMvKuKmocWhz6RibmUJbWeSyOzgFK1Z6lkuX+Ve6hDOFRsQYG8dAwxBAAQmKm6OwARiAgKAhi1jhJGDQugdUiPij0GnHgs-NLpsnrm9u7aQfJR91BZ2IXCFcGIA ```javascript // This one returns `*` to work around this bug in the compiler. const deflt1 = function(setting: T | void, defaultIfUndefined: T):...
Thanks so much for the updates!
I'm curious as to your use-case. I imagine that this doesn't prevent you from downcasting to a concrete type that implements `Send`. Is the need that you just want to...
> I am not sure it is necessary to have an intermediary. While it is true that `DowncastSync` implies `DowncastSend`, they can be added as needed to the supertraits of...
I'm running into the same thing. Here's a minimal repro: ```rust use piston_window::*; fn main() { let mut window: PistonWindow = WindowSettings::new("Test", [200, 200]) .exit_on_esc(true) .build() .unwrap(); let lazy =...
The issue is probably in [the loop here](https://github.com/PistonDevelopers/piston/blob/de175e1814d2d34ab016ff187f87553606de3743/src/event_loop/src/lib.rs#L155) since the issue is reproducible with `lazy=false` by setting `ups=0` as well.
Ah, sorry. I should have provided more context. I was indulging in the idea of having an adaptation of AndroidMath generate SVG output. It could transpile to the web as...