summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Terry <michael.terry@canonical.com>2013-09-30 15:47:50 -0400
committerMichael Terry <michael.terry@canonical.com>2013-09-30 15:47:50 -0400
commit1478fdc4b38f3b18f770ad3b610523a13c61707b (patch)
tree941685d890ec7d7b29b4178fa143f0e6e0090772
parent72c9ab4073ec5c33c1021d4c137bb6be59026549 (diff)
downloadlightdm-git-1478fdc4b38f3b18f770ad3b610523a13c61707b.tar.gz
Drop --standalone argument to u-s-c, it should assume it
-rw-r--r--src/seat-unity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/seat-unity.c b/src/seat-unity.c
index e37548d8..7190279f 100644
--- a/src/seat-unity.c
+++ b/src/seat-unity.c
@@ -370,7 +370,7 @@ seat_unity_start (Seat *seat)
SEAT_UNITY (seat)->priv->mir_socket_filename = g_strdup ("/tmp/mir_socket"); // FIXME: Use this socket by default as XMir is hardcoded to this
timeout = seat_get_integer_property (seat, "unity-compositor-timeout");
compositor_command = seat_get_string_property (seat, "unity-compositor-command");
- command = g_strdup_printf ("%s --standalone --file '%s' --from-dm-fd %d --to-dm-fd %d --vt %d", compositor_command, SEAT_UNITY (seat)->priv->mir_socket_filename, SEAT_UNITY (seat)->priv->to_compositor_pipe[0], SEAT_UNITY (seat)->priv->from_compositor_pipe[1], SEAT_UNITY (seat)->priv->vt);
+ command = g_strdup_printf ("%s --file '%s' --from-dm-fd %d --to-dm-fd %d --vt %d", compositor_command, SEAT_UNITY (seat)->priv->mir_socket_filename, SEAT_UNITY (seat)->priv->to_compositor_pipe[0], SEAT_UNITY (seat)->priv->from_compositor_pipe[1], SEAT_UNITY (seat)->priv->vt);
absolute_command = get_absolute_command (command);
g_free (command);