1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:17:45 +00:00

KeyboardSettings: Rename m_current_applied_keymap

Rename it to m_initial_active_keymap to denote that it's the keymap that
was active when the application started up.
This commit is contained in:
Nícolas F. R. A. Prado 2022-02-24 22:13:11 -05:00 committed by Andreas Kling
parent 256744ebdf
commit a48d7d6adc
2 changed files with 4 additions and 4 deletions

View file

@ -30,7 +30,7 @@ private:
Vector<String> m_initial_keymap_list;
String m_current_applied_keymap;
String m_initial_active_keymap;
RefPtr<GUI::ListView> m_selected_keymaps_listview;
RefPtr<GUI::CheckBox> m_num_lock_checkbox;