diff options
author | kraxel <kraxel> | 2007-02-08 10:39:38 +0000 |
---|---|---|
committer | kraxel <kraxel> | 2007-02-08 10:39:38 +0000 |
commit | 458c67d2ebc30f6c49718131a693e6281a04643e (patch) | |
tree | bee5e48d18e9089d37984a88662fafc7f10235a1 | |
parent | 00c221150a3d3638b8a701e0d2080fd86ccf6fde (diff) | |
download | xenwatch-458c67d2ebc30f6c49718131a693e6281a04643e.tar.gz |
shorter status line
-rw-r--r-- | vnc.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -127,9 +127,8 @@ static void vnc_window_texts(struct vnc_window *vnc) gtk_label_set_text(GTK_LABEL(vnc->line), "Press Ctrl-Alt to release input grab."); } else { - snprintf(textline, sizeof(textline), - "VNC connection to display %s, desktop \"%s\"", - vnc->display, vnc->client->desktopName ?: ""); + snprintf(textline, sizeof(textline), "VNC: \"%s\" at %s", + vnc->client->desktopName ?: "", vnc->display); gtk_label_set_text(GTK_LABEL(vnc->line), textline); } |