summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorJamie Mansfield <jmansfield@cadixdev.org>2021-07-26 11:43:23 +0100
committerGunnar Beutner <gunnar@beutner.name>2021-07-26 14:56:49 +0200
commit902559fc2dd182f9b2c2f570d9b9906655cee188 (patch)
tree47dc1b22260c3d6d64e6df9eb1cdaca3c9cbf520 /Userland
parent3129956c4e446f382bdaf0acdcce2f157fb182ad (diff)
downloadserenity-902559fc2dd182f9b2c2f570d9b9906655cee188.zip
KeyboardSettings: Prevent resizing the window
This matches the other settings applications.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Applications/KeyboardSettings/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/KeyboardSettings/main.cpp b/Userland/Applications/KeyboardSettings/main.cpp
index 15836a7e5b..8db24c4c23 100644
--- a/Userland/Applications/KeyboardSettings/main.cpp
+++ b/Userland/Applications/KeyboardSettings/main.cpp
@@ -103,6 +103,7 @@ int main(int argc, char** argv)
auto window = GUI::Window::construct();
window->set_title("Keyboard Settings");
window->resize(300, 70);
+ window->set_resizable(false);
window->set_icon(app_icon.bitmap_for_size(16));
auto& root_widget = window->set_main_widget<GUI::Widget>();