summaryrefslogtreecommitdiff
path: root/Userland/Applets/Keymap
diff options
context:
space:
mode:
authorLucas CHOLLET <lucas.chollet@free.fr>2023-03-07 17:59:27 -0500
committerAndreas Kling <kling@serenityos.org>2023-03-09 21:42:23 +0100
commit7d6908d9a5da71479d0fde2f2175bde525e49776 (patch)
tree1fb2c176cd842ab7519f940e027f8ace4a0badda /Userland/Applets/Keymap
parent4fd12b6b79a966b0f44f5ff8c4904457d563a463 (diff)
downloadserenity-7d6908d9a5da71479d0fde2f2175bde525e49776.zip
Applets/Keymap: Repaint applet on keymap change
Diffstat (limited to 'Userland/Applets/Keymap')
-rw-r--r--Userland/Applets/Keymap/KeymapStatusWidget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applets/Keymap/KeymapStatusWidget.cpp b/Userland/Applets/Keymap/KeymapStatusWidget.cpp
index 38b196107e..dec27e3ab4 100644
--- a/Userland/Applets/Keymap/KeymapStatusWidget.cpp
+++ b/Userland/Applets/Keymap/KeymapStatusWidget.cpp
@@ -67,6 +67,7 @@ void KeymapStatusWidget::set_current_keymap(DeprecatedString const& keymap)
{
m_current_keymap = keymap;
set_tooltip(keymap);
+ update();
}
void KeymapStatusWidget::paint_event(GUI::PaintEvent& event)