1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 23:25:07 +00:00

DisplaySettings: Tweak label "Color Name" => "Color"

This commit is contained in:
Andreas Kling 2020-04-30 13:22:56 +02:00
parent 977aa3968c
commit 5bdd05024f

View file

@ -215,7 +215,7 @@ void DisplaySettingsWidget::create_frame()
color_label.set_text_alignment(Gfx::TextAlignment::CenterLeft);
color_label.set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fill);
color_label.set_preferred_size({ 70, 0 });
color_label.set_text("Color Name:");
color_label.set_text("Color:");
m_color_input = color_selection_container.add<GUI::ColorInput>();
m_color_input->set_color_has_alpha_channel(false);