From 1de4ed8ca19fbe28fe8dd52750cf7a04690faa4e Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Thu, 1 Apr 2021 14:34:01 -0400 Subject: [PATCH] Serendipity: Don't modify tip frame palette Fixes illegible tip text --- Userland/Applications/Serendipity/SerendipityWidget.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Userland/Applications/Serendipity/SerendipityWidget.cpp b/Userland/Applications/Serendipity/SerendipityWidget.cpp index 2cd959c2471..c18ba5395a1 100644 --- a/Userland/Applications/Serendipity/SerendipityWidget.cpp +++ b/Userland/Applications/Serendipity/SerendipityWidget.cpp @@ -47,9 +47,6 @@ SerendipityWidget::SerendipityWidget() banner_label.set_icon(Gfx::Bitmap::load_from_file("/res/graphics/welcome-serendipity.png")); auto& tip_frame = *find_descendant_of_type_named("tip_frame"); - auto palette = tip_frame.palette(); - palette.set_color(Gfx::ColorRole::Base, Color::from_rgb(0xffffe1)); - tip_frame.set_palette(palette); tip_frame.set_background_role(Gfx::ColorRole::Base); tip_frame.set_fill_with_background_color(true);