Dustin Bensing

Results 92 comments of Dustin Bensing

I tried it again and surprisingly the exception did not happen but the "outter" function is called 15 times. Regardless of this, you should consider to update your docs or...

Can't say anything about Mac. Its working on current arch+gnome but fails on window 10. I tried different versions of dioxus all the way back to `v0.5.0-alpha.0` where the implementation...

Having the same issue, trying to change some versions of `nasm` without success – can't find a way to build this – strange.

@ealmloff i needed to compile v0.6.3 explicitly to apply this PR https://github.com/DioxusLabs/dioxus/pull/3753 – i can't just use the prebuilt one because it does not include it, neither does 0.7 which...

Yes it seems to be the case that the 200% scale is causing the issue. Setting it back to 100% results in https://github.com/user-attachments/assets/9ae2ad8f-6c10-4e2b-83f6-3204a78d3062

I also spun up a Windows 11 instance and it has the same behavior. Edited title and message.

I figured out that after changing https://github.com/DioxusLabs/dioxus/blob/544d8cc4da0fe6de5dff411e2ee665128458ae47/packages/desktop/src/webview.rs#L290-L294 to this ```rust wry::DragDropEvent::Over { position } => { //println!("postition: {} : {}", position.0, position.1); _ = proxy.send_event(UserWindowEvent::WindowsDragOver( window_id, position.0 / 2, position.1...

Ok digging into this a little bit more i figured out that there is an ipc that speaks with the webview directly with ts/js here https://github.com/DioxusLabs/dioxus/blob/544d8cc4da0fe6de5dff411e2ee665128458ae47/packages/interpreter/src/ts/native.ts#L206-L225 and there is a...

You can look for `40001` `serialization_failure` https://www.postgresql.org/docs/current/mvcc-serialization-failure-handling.html

Sorry, silly mistake for the repro. It should be ```rust let data: String = sqlx::query_scalar("select 'hello world from pg'") .fetch_one(&mut *transaction) .await .map_err(internal_error)?; ``` of course. Unfortunately for the repro...