aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vconsole.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/vconsole.c b/vconsole.c
index bd64ccc..c9293f4 100644
--- a/vconsole.c
+++ b/vconsole.c
@@ -307,7 +307,9 @@ static void menu_cb_vm_gfx(GtkAction *action, void *data)
return;
} else {
/* child */
- execlp("virt-viewer", "virt-viewer", "-w", "-c", uri, dom->uuid, NULL);
+ execlp("virt-viewer", "virt-viewer",
+ "--direct", /* tunneling doesn't work well */
+ "-w", "-c", uri, dom->uuid, NULL);
perror("execlp");
exit(1);
}