Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Generated and re-synced by the Flamingo hub (flamingo[bot]); local edits are
# overwritten on the next sync, so findings must be fixed in the hub template.
# YAML syntax is still enforced by the yaml-lint step.
paths:
.github/workflows/doc-orchestrator.yml:
ignore:
- '.+'
.github/workflows/flamingo-code-review.yml:
ignore:
- '.+'
6 changes: 6 additions & 0 deletions src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,11 @@ fn open_main_window(app: &AppHandle) -> Result<(), String> {
.visible(false)
.on_new_window(move |url, features| handle_new_window(&handler_app, url, features))
.on_page_load(handle_page_load)
// Tauri's file-drop handler swallows every drag session at the
// NSDraggingDestination / WebView2 layer, so the page never sees
// dragover/drop and HTML5 drag-and-drop (the ticket board) is dead.
// Nothing here consumes file drops, so opt out of the handler.
.disable_drag_drop_handler()
Comment thread
oleksandr-blip marked this conversation as resolved.
.build()
.map_err(|e| e.to_string())?;
spawn_show_fallback(&window);
Expand Down Expand Up @@ -710,6 +715,7 @@ fn handle_new_window(
.visible(false)
.on_new_window(move |u, f| handle_new_window(&child_app, u, f))
.on_page_load(handle_page_load)
.disable_drag_drop_handler()
.window_features(features)
.build()
{
Expand Down
Loading