KeyboardPreferenceLoader: Use correct default Num Lock config value
This commit is contained in:
parent
11fe38346c
commit
60713c5fcf
Notes:
sideshowbarker
2024-07-18 09:06:24 +09:00
Author: https://github.com/ForLoveOfCats Commit: https://github.com/SerenityOS/serenity/commit/60713c5fcf4 Pull-request: https://github.com/SerenityOS/serenity/pull/8732
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
Reference in a new issue