summaryrefslogtreecommitdiff
path: root/Userland/Applications/Assistant/main.cpp
diff options
context:
space:
mode:
authorthankyouverycool <66646555+thankyouverycool@users.noreply.github.com>2022-02-25 11:58:14 -0500
committerAndreas Kling <kling@serenityos.org>2022-02-25 19:38:23 +0100
commitf457e438852f15d26f1f93b6379d1c9eea2546c0 (patch)
treec5edf7c9bf0b40a30cdc891e8148308288e04282 /Userland/Applications/Assistant/main.cpp
parente1a72c6df8009dd702b71bce8842a24b63de2b82 (diff)
downloadserenity-f457e438852f15d26f1f93b6379d1c9eea2546c0.zip
Assistant+CommandPalette: Use FrameShape::Window for main widgets
Diffstat (limited to 'Userland/Applications/Assistant/main.cpp')
-rw-r--r--Userland/Applications/Assistant/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Assistant/main.cpp b/Userland/Applications/Assistant/main.cpp
index 2d304830eb..fe59a0587c 100644
--- a/Userland/Applications/Assistant/main.cpp
+++ b/Userland/Applications/Assistant/main.cpp
@@ -216,7 +216,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
auto& container = window->set_main_widget<GUI::Frame>();
container.set_fill_with_background_color(true);
- container.set_frame_shadow(Gfx::FrameShadow::Raised);
+ container.set_frame_shape(Gfx::FrameShape::Window);
auto& layout = container.set_layout<GUI::VerticalBoxLayout>();
layout.set_margins({ 8, 8, 0 });