makeworld

Results 588 comments of makeworld

I actually I am not very confident in this PR, I think it may be an incomplete solution. See my comment [above](https://github.com/wailsapp/wails/pull/3949#issuecomment-2571715530), and also [this comment](https://github.com/wailsapp/wails/issues/3686#issuecomment-2571720540) which explains what I...

I have a repo to reproduce this bug here: https://github.com/makew0rld/wails-issue-3686 You can see the minimal changes I added to trigger it in this commit: https://github.com/makew0rld/wails-issue-3686/commit/6cbbfa92989cac3f288ca4262d41b12b4cd990df

According to a user on Discord ([message](https://discord.com/channels/1042734330029547630/1061396491769479300/1275001651668979749)) this replacing also happens for them, but can be prevented with `preventDefault` in JavaScript. I will try this, but even if it works,...

Finally had a chance to work on this. I can confirm @mrf345's patch in #3704 worked for me. I moved my `runtime.OnFileDrop` into my `OnDomReady` callback instead of `OnStartup` and...

@leaanthony any update on this? I understand the PR is draft mode but it does actually fix my issue so it would be helpful to see this merged and added...

Ok, sure. I don't fully understand the reasoning behind the PR right now, but I've got a copy of it under my name at #3949.

As I mentioned in my PR, I'm not seeing drag and drop work on macOS at all, whether I use the PR or not. If anyone can confirm that, that...

For anyone else running into this, a temporary fix is to add this JavaScript to your frontend: ```javascript addEventListener("drop", (event) => { event.preventDefault(); }); addEventListener("dragover", (event) => { event.preventDefault(); });...

Came here to file this same issue. My outsider analysis is that this is a new bug with the drag and drop functionality released in v2.9.0, specifically in PR #3203...

I'm curious how @lyimmi and @jakubpeleska were able to test this on Ubuntu, since it seems the function signature of `gtk_drag_dest_unset` has stayed the same for years (since that would...