mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
Kernel+LibKeyboard: Store the keymap name when setting system keymap
This way we can query the kernel to see which keymap is currently in use.
This commit is contained in:
committed by
Andreas Kling
parent
8dd0c391e9
commit
00a0e525e6
@@ -391,10 +391,11 @@ KeyboardClient::~KeyboardClient()
|
||||
{
|
||||
}
|
||||
|
||||
void KeyboardDevice::set_maps(Keyboard::CharacterMapData character_map_data)
|
||||
void KeyboardDevice::set_maps(const Keyboard::CharacterMapData& character_map_data, const String& character_map_name)
|
||||
{
|
||||
m_character_map.set_character_map_data(character_map_data);
|
||||
dbg() << "New Character map passing to client.";
|
||||
m_character_map.set_character_map_name(character_map_name);
|
||||
dbg() << "New Character map \"" << character_map_name << "\" passing to client.";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user