diff --git a/js/highlighter/SuperCellHighlighter.js b/js/highlighter/SuperCellHighlighter.js
index 85eaa35938c233a3be96a743164acba7c3d27382..81edab6a010f25398d2d3547d6bad80927f5577b 100644
--- a/js/highlighter/SuperCellHighlighter.js
+++ b/js/highlighter/SuperCellHighlighter.js
@@ -37,12 +37,15 @@ define(['underscore', 'backbone', 'threeModel', 'appState', 'lattice', 'cell', '
         },
 
         _setRotation: function(direction){
-            if (!this.highlightedObject) return;
-            var index = this.highlightedObject.getAbsoluteIndex();
 
-            if ((index.z%2 == 0 && Math.abs(direction.z) > 0.9) || (index.z%2 != 0 && Math.abs(direction.z) < 0.1))
-                this.mesh.rotation.set(0, 0, Math.PI/2);
-            else this.mesh.rotation.set(0,0,0);
+            if (lattice.connectionType == "gik"){
+                if (!this.highlightedObject) return;
+                var index = this.highlightedObject.getAbsoluteIndex();
+
+                if ((index.z%2 == 0 && Math.abs(direction.z) > 0.9) || (index.z%2 != 0 && Math.abs(direction.z) < 0.1))
+                    this.mesh.rotation.set(0, 0, Math.PI/2);
+                else this.mesh.rotation.set(0,0,0);
+            }
 
             var superCellIndex = appState.get("superCellIndex");
             this.mesh.translateX(-(superCellIndex.x + 0.5 - this.mesh.scale.x/2)*lattice.xScale());
diff --git a/js/models/AppState.js b/js/models/AppState.js
index 126278b72b8ee8879cdfd25ef82ec54fd1b9435f..c54e1207491421f66e7ea89a34eaa0aba93517a0 100644
--- a/js/models/AppState.js
+++ b/js/models/AppState.js
@@ -195,7 +195,6 @@ define(['underscore', 'backbone', 'threeModel', 'three', 'plist'], function(_, B
                     }
                     break;
                 case 87://w - increase supercell index
-                    console.log(this.get("superCellIndex"));
                     if (state) this.set("superCellIndex", this._incrementSuperCellIndex("x", this.get("superCellIndex").clone()));
                     break;
                 case 81://q - decrease supercell index