Results 7 comments of Daniel Gulotta

I am having the same issue. I am using Gentoo Linux with kernel 5.4.38-gentoo and a Moto G6. The issue started with commit 2bcc4551e9ad7c3827a52af7edd1888775ab5acc; everything worked fine before that.

It would be nice to have a lower-level interface that deals with u8 slices and strs directly, in case users want to choose their serialization method. The higher-level interface that...

I think the first issue arises because zenity is run with the option "--file-filter name", which means that it is being asked to show only files named "name". I have...

Actually, what is happening is this line is being called with file_extensions being empty: https://github.com/DioxusLabs/dioxus/blob/61b55c9d373f90649f3cedc7f675f0a76f28ada1/packages/desktop/src/file_upload.rs#L92 rfd interprets this as "don't match any files".

Thanks for all of your hard work! `notan` is a really nice library; I've found that it has the easiest to use 2d graphics API out of all of the...

In order to get the code to compile on Windows, I disabled `notan_winit::window::clamp_window_to_sane_position`. There are two ways that `clamp_window_to_sane_position` could be re-enabled. - (seems easy) Call clamp_window_to_sane_position after creating the...

The latest commits modify the `WindowBackend` trait to give the backend more control over when initialization happens. In particular, the Winit backend now runs initialization from within the event loop,...