From 085da369ff8b071d970f4b42348f3e8f12fa60f6 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 4 Jul 2021 23:11:06 +0200 Subject: [PATCH] Assistant: Force the window to have a shadow despite being frameless --- Userland/Applications/Assistant/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/Assistant/main.cpp b/Userland/Applications/Assistant/main.cpp index 1309831c22..743dc75188 100644 --- a/Userland/Applications/Assistant/main.cpp +++ b/Userland/Applications/Assistant/main.cpp @@ -294,6 +294,7 @@ int main(int argc, char** argv) }; window->set_frameless(true); + window->set_forced_shadow(true); window->resize(GUI::Desktop::the().rect().width() / 3, 46); window->center_on_screen(); window->move_to(window->x(), window->y() - (GUI::Desktop::the().rect().height() * 0.33));