[Spice-devel] [PATCH spice-gtk 03/15] spice-widget: fix file drag-n-drop mime-type

Hans de Goede hdegoede at redhat.com
Sat Mar 9 03:06:23 PST 2013


Currently the user can drag-drop text onto the widget, and it will try to
open it as a file, not good, this fixes this.

Signed-off-by: Hans de Goede <hdegoede at redhat.com>
---
 gtk/spice-widget.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gtk/spice-widget.c b/gtk/spice-widget.c
index 42d0cdd..e4c64ee 100644
--- a/gtk/spice-widget.c
+++ b/gtk/spice-widget.c
@@ -536,7 +536,7 @@ static void spice_display_init(SpiceDisplay *display)
 {
     GtkWidget *widget = GTK_WIDGET(display);
     SpiceDisplayPrivate *d;
-    GtkTargetEntry targets = {"text/plain", 0, 0};
+    GtkTargetEntry targets = { "text/uri-list", 0, 0 };
 
     d = display->priv = SPICE_DISPLAY_GET_PRIVATE(display);
 
-- 
1.8.1.4



More information about the Spice-devel mailing list