From b5b447cfac989f9c4245d5b3c676bcc4c2bae3d0 Mon Sep 17 00:00:00 2001
From: Bob - Home - Windows <rsheldiii@gmail.com>
Date: Sat, 17 Feb 2018 14:41:18 -0500
Subject: [PATCH] actually fix tilt bug lol

---
 src/key.scad | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/key.scad b/src/key.scad
index d57f52e..e493668 100644
--- a/src/key.scad
+++ b/src/key.scad
@@ -120,7 +120,7 @@ module inside() {
 // put something at the top of the key, with no adjustments for dishing
 module top_placement(depth_difference) {
 	translate([$dish_skew_x, $top_skew + $dish_skew_y, $total_depth - depth_difference]){
-		rotate([-$top_tilt / top_total_key_height(),0,0]){
+		rotate([-$top_tilt / $key_height,0,0]){
 			children();
 		}
 	}