forked from mirrors/qmk_userspace
		
	Allow key override to respect weak mods caused by caps word (#21434)
This commit is contained in:
		
					parent
					
						
							
								b36e017f0a
							
						
					
				
			
			
				commit
				
					
						e648b84da3
					
				
			
		
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -310,15 +310,15 @@ bool process_record_quantum(keyrecord_t *record) {
 | 
				
			||||||
#if (defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))) && !defined(NO_MUSIC_MODE)
 | 
					#if (defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))) && !defined(NO_MUSIC_MODE)
 | 
				
			||||||
            process_music(keycode, record) &&
 | 
					            process_music(keycode, record) &&
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					#ifdef CAPS_WORD_ENABLE
 | 
				
			||||||
 | 
					            process_caps_word(keycode, record) &&
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
#ifdef KEY_OVERRIDE_ENABLE
 | 
					#ifdef KEY_OVERRIDE_ENABLE
 | 
				
			||||||
            process_key_override(keycode, record) &&
 | 
					            process_key_override(keycode, record) &&
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef TAP_DANCE_ENABLE
 | 
					#ifdef TAP_DANCE_ENABLE
 | 
				
			||||||
            process_tap_dance(keycode, record) &&
 | 
					            process_tap_dance(keycode, record) &&
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef CAPS_WORD_ENABLE
 | 
					 | 
				
			||||||
            process_caps_word(keycode, record) &&
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if defined(UNICODE_COMMON_ENABLE)
 | 
					#if defined(UNICODE_COMMON_ENABLE)
 | 
				
			||||||
            process_unicode_common(keycode, record) &&
 | 
					            process_unicode_common(keycode, record) &&
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue