changeset 69:29fe0a9799ec

Fixing partial map static layer compilation bug - Processing order was not correct
author Jacob Alexander <haata@kiibohd.com>
date Mon, 12 Oct 2015 23:27:34 -0700
parents e436d20057a3
children 1f35f83485e1
files kll.py
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/kll.py	Mon Oct 12 22:59:12 2015 -0700
+++ b/kll.py	Mon Oct 12 23:27:34 2015 -0700
@@ -759,9 +759,8 @@
 		for filename in partial:
 			variables_dict.setCurrentFile( filename )
 			processKLLFile( filename )
-
-		# Apply assignment cache, see 5.1.2 USB Codes for why this is necessary
-		macros_map.replayCachedAssignments()
+			# Apply assignment cache, see 5.1.2 USB Codes for why this is necessary
+			macros_map.replayCachedAssignments()
 		# Remove un-marked keys to complete the partial layer
 		macros_map.removeUnmarked()