From c8b62aaf1716068ec94c75486e3bf8f54c4a8d85 Mon Sep 17 00:00:00 2001
From: Fabian Homborg <FHomborg@gmail.com>
Date: Fri, 16 Aug 2013 11:57:53 +0200
Subject: [PATCH] Fix layout switching - tiles need to be migrated over and the
 screenRectangle given to the layout

---
 contents/code/tiling.js | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/contents/code/tiling.js b/contents/code/tiling.js
index 6cd8b0f..1ac391d 100644
--- a/contents/code/tiling.js
+++ b/contents/code/tiling.js
@@ -40,10 +40,23 @@ function Tiling(screenRectangle, layoutType) {
      */
     this.active = false;
 
+	this.screenRectangle = screenRectangle;
     // TODO
 }
 
 Tiling.prototype.setLayoutType = function(layoutType) {
+	print("setLayoutType");
+	print(layoutType.name);
+	//print(this.layout.name);
+	var newLayout = new layoutType(this.layout.screenRectangle);
+	print("Adding ", this.layout.tiles.length, "tiles");
+	for(i = 0; i < this.layout.tiles.length; i++) {
+		newLayout.addTile();
+		this.layout.tiles[i].tileIndex = i;
+	}
+	this.layout = newLayout;
+	//print(this.layout.name);
+	print("new layout type");
     // TODO
 }
 
-- 
GitLab