mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-06 01:12:40 +02:00
clipboard: Fix #14639
This is the recommended fix from Gtk to use our own mime type rather than depend on a mimetype that has a different expectation of payload. This means drag and drop of colors uses `application/x-geglcolor` rather than `application/x-color` which expects an RGBA color rather than a structure.
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
{ "XdndDirectSave0", 0, GIMP_DND_TYPE_XDS }
|
||||
|
||||
#define GIMP_TARGET_COLOR \
|
||||
{ "application/x-color", 0, GIMP_DND_TYPE_COLOR }
|
||||
{ "application/x-geglcolor", 0, GIMP_DND_TYPE_COLOR }
|
||||
|
||||
#define GIMP_TARGET_SVG \
|
||||
{ "image/svg", 0, GIMP_DND_TYPE_SVG }
|
||||
|
Reference in New Issue
Block a user