mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:07:36 +00:00
KeyboardPreferenceLoader: Use correct default Num Lock config value
This commit is contained in:
parent
11fe38346c
commit
60713c5fcf
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ int main()
|
|||
exit(1);
|
||||
}
|
||||
|
||||
bool enable_num_lock = keyboard_settings_config->read_bool_entry("StartupEnable", "NumLock", false);
|
||||
bool enable_num_lock = keyboard_settings_config->read_bool_entry("StartupEnable", "NumLock", true);
|
||||
|
||||
auto keyboard_device_or_error = Core::File::open("/dev/keyboard0", Core::OpenMode::ReadOnly);
|
||||
if (keyboard_device_or_error.is_error()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue