diff options
author | James Laird-Wah <james@laird-wah.net> | 2018-09-15 22:28:25 +1000 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-10-04 21:43:31 -0400 |
commit | 0c3137d8ff0b84ee6b39ea8b85aeb4f82fcd7a9c (patch) | |
tree | abde9d60207844c18709f04c89d3e1811c624622 /quantum | |
parent | 26adf3706a7822e05977c0eadb6963c0db2e1c3b (diff) | |
download | firmware-0c3137d8ff0b84ee6b39ea8b85aeb4f82fcd7a9c.tar.gz firmware-0c3137d8ff0b84ee6b39ea8b85aeb4f82fcd7a9c.tar.bz2 firmware-0c3137d8ff0b84ee6b39ea8b85aeb4f82fcd7a9c.zip |
rgb_matrix: continue calling rgb_matrix_indicators() when toggled off
This allows user code to continue to use the matrix for indication, even
when the RGB toggle is off, using rgb_matrix_set_color().
Without this change, it's impossible for user code to use the matrix
when the toggle is off, as any changes get overwritten with black on the
next task cycle, and the indicator code is not called at all.
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/rgb_matrix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c index 1f00e9d99..26ee57f5c 100644 --- a/quantum/rgb_matrix.c +++ b/quantum/rgb_matrix.c @@ -620,7 +620,8 @@ void rgb_matrix_custom(void) { void rgb_matrix_task(void) { static uint8_t toggle_enable_last = 255; if (!rgb_matrix_config.enable) { - rgb_matrix_all_off(); + rgb_matrix_all_off(); + rgb_matrix_indicators(); toggle_enable_last = rgb_matrix_config.enable; return; } |