]> git.donarmstrong.com Git - kiibohd-kll.git/commitdiff
Fixing partial map static layer compilation bug
authorJacob Alexander <haata@kiibohd.com>
Tue, 13 Oct 2015 06:27:34 +0000 (23:27 -0700)
committerJacob Alexander <haata@kiibohd.com>
Tue, 13 Oct 2015 06:27:34 +0000 (23:27 -0700)
 - Processing order was not correct

kll.py

diff --git a/kll.py b/kll.py
index b03c67dd78bd0bcc8103b0f6bc7c90954f54bd4f..88ae72a8d71da1789a2aec58764690517c9a0928 100755 (executable)
--- a/kll.py
+++ b/kll.py
@@ -759,9 +759,8 @@ if __name__ == '__main__':
                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()