summaryrefslogtreecommitdiff
path: root/keyboards/tzarc/djinn/djinn.c
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2022-10-02 00:21:22 +1000
committerGitHub <noreply@github.com>2022-10-01 15:21:22 +0100
commit059a7fb9b033fe1adb8a797e0f3dbc074499020c (patch)
tree440b121bc042f5ac1f9c25e0c7191c426479782c /keyboards/tzarc/djinn/djinn.c
parent9f0d9b4fbea2da81c82d7dc091aa56d52a7db675 (diff)
Djinn theme, allow force redraws (#18558)
Diffstat (limited to 'keyboards/tzarc/djinn/djinn.c')
-rw-r--r--keyboards/tzarc/djinn/djinn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/tzarc/djinn/djinn.c b/keyboards/tzarc/djinn/djinn.c
index e6529e555d..93b1ee775e 100644
--- a/keyboards/tzarc/djinn/djinn.c
+++ b/keyboards/tzarc/djinn/djinn.c
@@ -129,7 +129,7 @@ RGB rgb_matrix_hsv_to_rgb(HSV hsv) {
//----------------------------------------------------------
// UI Placeholder, implemented in themes
-__attribute__((weak)) void draw_ui_user(void) {}
+__attribute__((weak)) void draw_ui_user(bool force_redraw) {}
//----------------------------------------------------------
// Housekeeping
@@ -223,7 +223,7 @@ void housekeeping_task_kb(void) {
// Draw the UI
if (kb_state.lcd_power) {
- draw_ui_user();
+ draw_ui_user(false);
}
// Go into low-scan interrupt-based mode if we haven't had any matrix activity in the last 250 milliseconds