[PATCH weston] window: Initialize workspace state before first roundtrip

Jonas Ådahl jadahl at gmail.com
Mon Oct 8 13:49:04 PDT 2012


The workspace state parameters were initialized after the first
roundtrip. If a workspace manager state event was received during this
roundtrip the state parameters were cleared leaving an incorrect state.

Signed-off-by: Jonas Ådahl <jadahl at gmail.com>
---
 clients/window.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/clients/window.c b/clients/window.c
index 9a75a46..aba1254 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -3772,6 +3772,9 @@ display_create(int argc, char *argv[])
 		return NULL;
 	}
 
+	d->workspace = 0;
+	d->workspace_count = 1;
+
 	/* Set up listener so we'll catch all events. */
 	wl_display_add_global_listener(d->display,
 				       display_handle_global, d);
@@ -3794,9 +3797,6 @@ display_create(int argc, char *argv[])
 
 	wl_list_init(&d->window_list);
 
-	d->workspace = 0;
-	d->workspace_count = 1;
-
 	return d;
 }
 
-- 
1.7.9.5



More information about the wayland-devel mailing list