Fix a bug for drag and drop from nautilus/dolphin (more spectific format first in the

list of possible inputs)
This commit is contained in:
Jean-Marie Favreau 2019-05-13 07:52:38 +02:00 committed by Robin Gareus
parent a4474e95a4
commit 1846476127
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -252,8 +252,8 @@ Editor::initialize_canvas ()
// Drag-N-Drop from the region list can generate this target
target_table.push_back (TargetEntry ("regions"));
target_table.push_back (TargetEntry ("text/plain"));
target_table.push_back (TargetEntry ("text/uri-list"));
target_table.push_back (TargetEntry ("text/plain"));
target_table.push_back (TargetEntry ("application/x-rootwin-drop"));
_track_canvas->drag_dest_set (target_table);