# HG changeset patch # User Jacob Alexander # Date 1444717654 25200 # Node ID 29fe0a9799ecfd3ae94b10d3183a267a6246a92a # Parent e436d20057a3a82fffc2901ea1782b37deeb61a7 Fixing partial map static layer compilation bug - Processing order was not correct diff -r e436d20057a3 -r 29fe0a9799ec kll.py --- 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()