Pasteboard sandboxing on Apple Silicon? #92
-
Hi all, From https://wadetregaskis.com/mac-app-sandboxing-interferes-with-drag-drop/ (which I found when trying to get behind this bug) it seemed to me that only "receiving" apps could run into this sandboxing problem/bug not the emitter (and on top of that neither are sandboxed per se, but it seems Apple Silicon macOS has tightened security). But in our case it seems Exult Studio (emitter) is causing the problem. Why post this here? Maybe someone has an idea OR can anyone recommend a GTK3 application that runs on Apple Silicon and has some sort of drag and drop. Just so I can try and see if it is an Exult only problem or maybe a bigger GTK3 issue. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
It might depend on how you're making the file URL to put on the pasteboard. https://gitlab.gnome.org/GNOME/gtk/-/issues/6480, fixed last week, was about copying from the generic file chooser but the underlying cause, a mismatch in the NSPasteboardType, might have some bearing on your problem. I suggest that you build Gtk3 from git (you can use the |
Beta Was this translation helpful? Give feedback.
It might depend on how you're making the file URL to put on the pasteboard. https://gitlab.gnome.org/GNOME/gtk/-/issues/6480, fixed last week, was about copying from the generic file chooser but the underlying cause, a mismatch in the NSPasteboardType, might have some bearing on your problem. I suggest that you build Gtk3 from git (you can use the
gtk-3.0
module in eithermodulesets
ormodulesets-unstable
) and test. In my testing of the fix I successfully dragged a file entry from a non-native GtkFileChooser window to TextEdit, which opened the dragged file as one would expect.