David Jozwik

Results 10 comments of David Jozwik

Also had this problem, had to restore my PC.

I haven't contributed to Tauri, I may be mistaken but it appears the code this is involved in is used to: 1. Resize the window when undecorated. As set in...

Here is a close up of the flashing cursor I noticed (I am not clicking or anything, just moving the mouse around over the button) ![2024-02-06_09-32-06](https://github.com/tauri-apps/tauri/assets/25918877/0b375ae0-1ddb-471b-a6ef-36b48cfe2375) https://github.com/tauri-apps/tauri/assets/25918877/0fba563c-42d2-4f2d-80ec-2970286fe041

Amr created a PR that is awaiting approval that fixes these issues. The OS check and permissions issue has been resolved. [The OS check is now performed in Rust](https://github.com/tauri-apps/tauri/blob/b4a381f53a5b2b84da148eb3737a1bb54c096e4e/core/tauri-runtime-wry/src/undecorated_resizing.rs#L101-L115) and...

Yeah, it's not ideal. From what I've heard I don't think this will end up being the final solution. Debouncing is a good idea (200ms or so?). I know Amr...

Just from what I've seen so far; I'm not sure why this couldn't be handled entirely natively in Rust using the Win32 API from the `windows` crate. It seems like...

Ah I see now. It appears WebView2 can't be subclassed either so intercepting hit tests wont be possible (though I notice a tiny 1 pixel region at the top of...

I'm also using Arch Linux and getting this error. I'm using JDK 17. The `start` and `--no-package` workaround works for me as well. But just `npx react-native run-android` hangs eternally....

I'm using bash. This may be related: - https://github.com/facebook/react-native/issues/28807? Might be more issues like this. They seem to go stale and just wind up closed. The problematic code seems to...

This is my best temp fix for now, I placed the following envvar in my `~/.bashrc` (which my `~/.profile` also pulls in). ```bash # Fix for "react-native run-android" command hanging...