From 9edc7885264832d0ecbccbfb1df943ac5ef39bf2 Mon Sep 17 00:00:00 2001 From: Uri Lublin Date: Thu, 5 Jul 2012 23:43:53 +0300 Subject: [PATCH] spicy: more informative presentation of usb devices in menu Using the default format. --- gtk/spicy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/spicy.c b/gtk/spicy.c index 98a44d5..5ffe3b7 100644 --- a/gtk/spicy.c +++ b/gtk/spicy.c @@ -460,7 +460,7 @@ static void menu_cb_select_usb_devices(GtkAction *action, void *data) area = gtk_dialog_get_content_area(GTK_DIALOG(dialog)); usb_device_widget = spice_usb_device_widget_new(win->conn->session, - "%s %s"); + NULL); /* default format */ g_signal_connect(usb_device_widget, "connect-failed", G_CALLBACK(usb_connect_failed), NULL); gtk_box_pack_start(GTK_BOX(area), usb_device_widget, TRUE, TRUE, 0);