diff --git a/contents/code/tilelist.js b/contents/code/tilelist.js
index 14b258d094b9a2b9f77629d64602b7816c9f1acb..abc523aff290dbeeb2861c7f01db8fe1d4d3efc3 100644
--- a/contents/code/tilelist.js
+++ b/contents/code/tilelist.js
@@ -97,14 +97,12 @@ TileList.prototype.connectSignals = function(client) {
 			tile.onClientStartUserMovedResized(client);
 		}
     });
-	/*
     client.clientStepUserMovedResized.connect(function() {
 		var tile = getTile(client);
 		if (tile != null) {
 			tile.onClientStepUserMovedResized(client);
 		}
     });
-	*/
     client.clientFinishUserMovedResized.connect(function() {
 		var tile = getTile(client);
 		if (tile != null) {
diff --git a/contents/code/tilingmanager.js b/contents/code/tilingmanager.js
index c2ceb594bd3e0afa3ebdb41504d37c9164d54c85..a300c95591bbf35d3ddb32925cda04c983ac4844 100644
--- a/contents/code/tilingmanager.js
+++ b/contents/code/tilingmanager.js
@@ -416,7 +416,6 @@ TilingManager.prototype._onTileMovingEnded = function(tile) {
 }
 
 TilingManager.prototype._onTileMovingStep = function(tile) {
-	/*
 	var client = tile.clients[0];
 	// Calculate the rectangle in which the window is placed if it is dropped
 	var layout = this.layouts[this._currentDesktop][client.screen];
@@ -432,8 +431,7 @@ TilingManager.prototype._onTileMovingStep = function(tile) {
 	// Show an outline where the window would be placed
 	// TODO: This is not working yet, the window movement code already disables
 	// any active outline
-	workspace.showOutline(targetArea);
-	*/
+	//workspace.showOutline(targetArea);
 }
 
 TilingManager.prototype._changeTileLayouts =