From eddfdfeb89f59a6de4a5f1a1d1d9a1585b305b2e Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Mon, 12 Oct 2015 23:27:34 -0700 Subject: [PATCH] Fixing partial map static layer compilation bug - Processing order was not correct --- kll.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kll.py b/kll.py index b03c67d..88ae72a 100755 --- 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() -- 2.39.2