Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Core] Add Layer Lock feature #23430

Open
wants to merge 16 commits into
base: develop
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
Include process layer lock
  • Loading branch information
drashna committed Jun 19, 2024
commit f3dfc4bcaf6f5284e82736bd1557a139d1572012
4 changes: 4 additions & 0 deletions quantum/quantum.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright 2016-2017 Jack Humbert

Check failure on line 1 in quantum/quantum.c

View workflow job for this annotation

GitHub Actions / lint

Requires Formatting
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -72,6 +72,10 @@
# include "process_unicode_common.h"
#endif

#ifdef LAYER_LOCK_ENABLE
#include "process_layer_lock.h"
#endif // LAYER_LOCK_ENABLE

#ifdef AUDIO_ENABLE
# ifndef GOODBYE_SONG
# define GOODBYE_SONG SONG(GOODBYE_SOUND)
Expand Down
Loading