From 6394ea00d841aefd872b115f64777ce7a01f8e25 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 20 May 2021 00:13:56 +0200 Subject: [PATCH] DisplaySettings: Remove icon from browse-for-wallpaper button The icon on this button looked out of place. --- .../Applications/DisplaySettings/BackgroundSettingsWidget.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp b/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp index 9a2756f108..d31102015c 100644 --- a/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp +++ b/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp @@ -61,7 +61,6 @@ void BackgroundSettingsWidget::create_frame() }; auto& button = *find_descendant_of_type_named("wallpaper_open_button"); - button.set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/open.png")); button.on_click = [this](auto) { auto path = GUI::FilePicker::get_open_filepath(nullptr, "Select wallpaper from file system."); if (!path.has_value())