window: send transient flags over the wire

Signed-off-by: Tiago Vignatti <tiago.vignatti@intel.com>
diff --git a/clients/window.c b/clients/window.c
index d7b2e5c..5c4d28b 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -2695,7 +2695,7 @@
 
 struct window *
 window_create_transient(struct display *display, struct window *parent,
-			int32_t x, int32_t y)
+			int32_t x, int32_t y, uint32_t flags)
 {
 	struct window *window;
 
@@ -2710,7 +2710,7 @@
 	if (display->shell)
 		wl_shell_surface_set_transient(window->shell_surface,
 					       window->parent->shell_surface,
-					       window->x, window->y, 0);
+					       window->x, window->y, flags);
 
 	return window;
 }