shell: restore correct layer in shell_unset_fullscreen

This fixes the bug where surface is above panel_layer
just after it is restored from fullscreen mode.

How to reproduce:
* move surface under panel
* set surface fullscreen
* restore surface to normal mode
diff --git a/src/shell.c b/src/shell.c
index 1c44e39..c799409 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -1421,6 +1421,7 @@
 static void
 shell_unset_fullscreen(struct shell_surface *shsurf)
 {
+	struct workspace *ws;
 	/* undo all fullscreen things here */
 	if (shsurf->fullscreen.type == WL_SHELL_SURFACE_FULLSCREEN_METHOD_DRIVER &&
 	    shell_surface_is_top_fullscreen(shsurf)) {
@@ -1442,6 +1443,10 @@
         	               &shsurf->rotation.transform.link);
 		shsurf->saved_rotation_valid = false;
 	}
+
+	ws = get_current_workspace(shsurf->shell);
+	wl_list_remove(&shsurf->surface->layer_link);
+	wl_list_insert(&ws->layer.surface_list, &shsurf->surface->layer_link);
 }
 
 static int