summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-01-30 06:56:24 +0100
committerAndreas Kling <kling@serenityos.org>2021-02-01 09:54:32 +0100
commit6c04629ff8cd24dd940e01e7c5ea3fb22554829e (patch)
treebbedba57972d4967000987a35b946a0e2560b935 /Userland
parent9068398f6b9804f4afc812d6bb3f8d16937579b3 (diff)
downloadserenity-6c04629ff8cd24dd940e01e7c5ea3fb22554829e.zip
KeyboardMapper: Make all of the GUI visible
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Applications/KeyboardMapper/KeyboardMapperWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/KeyboardMapper/KeyboardMapperWidget.cpp b/Userland/Applications/KeyboardMapper/KeyboardMapperWidget.cpp
index 24df141a01..492de94421 100644
--- a/Userland/Applications/KeyboardMapper/KeyboardMapperWidget.cpp
+++ b/Userland/Applications/KeyboardMapper/KeyboardMapperWidget.cpp
@@ -111,7 +111,7 @@ void KeyboardMapperWidget::create_frame()
// Map Selection
m_map_group = bottom_widget.add<GUI::Widget>();
m_map_group->set_layout<GUI::HorizontalBoxLayout>();
- m_map_group->set_fixed_width(250);
+ m_map_group->set_fixed_width(450);
auto& radio_map = m_map_group->add<GUI::RadioButton>("Default");
radio_map.set_name("map");