mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	[Keymap] Fix missing return for oled task in drashna userspace (#15012)
This commit is contained in:
		
							parent
							
								
									8812e3724a
								
							
						
					
					
						commit
						89e5e4e7ad
					
				@ -427,7 +427,7 @@ bool oled_task_user(void) {
 | 
				
			|||||||
    if (is_keyboard_master()) {
 | 
					    if (is_keyboard_master()) {
 | 
				
			||||||
        if (timer_elapsed32(oled_timer) > 30000) {
 | 
					        if (timer_elapsed32(oled_timer) > 30000) {
 | 
				
			||||||
            oled_off();
 | 
					            oled_off();
 | 
				
			||||||
            return;
 | 
					            return false;
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            oled_on();
 | 
					            oled_on();
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user