From 9cf92831e3962e3b1867769b825afa151758ebba Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 29 Feb 2020 17:04:46 +0100 Subject: [PATCH] Welcome: Remove the default GUI::Frame look from TextWidget --- Applications/Welcome/TextWidget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Applications/Welcome/TextWidget.cpp b/Applications/Welcome/TextWidget.cpp index 882054dafe..5bce4bf9d1 100644 --- a/Applications/Welcome/TextWidget.cpp +++ b/Applications/Welcome/TextWidget.cpp @@ -36,6 +36,9 @@ TextWidget::TextWidget(const StringView& text) : m_text(text) { + set_frame_thickness(0); + set_frame_shadow(Gfx::FrameShadow::Plain); + set_frame_shape(Gfx::FrameShape::NoFrame); } TextWidget::~TextWidget()