diff options
Diffstat (limited to 'Userland/Services/WindowServer/KeymapSwitcher.cpp')
-rw-r--r-- | Userland/Services/WindowServer/KeymapSwitcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/KeymapSwitcher.cpp b/Userland/Services/WindowServer/KeymapSwitcher.cpp index 3de9a8c373..ac47e2473b 100644 --- a/Userland/Services/WindowServer/KeymapSwitcher.cpp +++ b/Userland/Services/WindowServer/KeymapSwitcher.cpp @@ -34,7 +34,7 @@ void KeymapSwitcher::refresh() { m_keymaps.clear(); - auto mapper_config(Core::ConfigFile::open(m_keyboard_config)); + auto mapper_config(Core::ConfigFile::open(m_keyboard_config).release_value_but_fixme_should_propagate_errors()); auto keymaps = mapper_config->read_entry("Mapping", "Keymaps", ""); auto keymaps_vector = keymaps.split(','); |