1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:27:44 +00:00

MailSettings: Set icons from GML

This commit is contained in:
Dylan Katz 2022-01-28 23:29:37 -08:00 committed by Andreas Kling
parent 3ee32b6dbf
commit 362df5b6dd
2 changed files with 4 additions and 8 deletions

View file

@ -44,12 +44,6 @@ MailSettingsWidget::MailSettingsWidget()
load_from_gml(mail_settings_widget_gml);
auto& server_settings_image_label = *find_descendant_of_type_named<GUI::Label>("server_settings_image_label");
server_settings_image_label.set_icon(Gfx::Bitmap::try_load_from_file("/res/graphics/mail-server-settings.png").release_value_but_fixme_should_propagate_errors());
auto& user_settings_image_label = *find_descendant_of_type_named<GUI::Label>("user_settings_image_label");
user_settings_image_label.set_icon(Gfx::Bitmap::try_load_from_file("/res/graphics/mail-user-settings.png").release_value_but_fixme_should_propagate_errors());
m_server_inputbox = *find_descendant_of_type_named<GUI::TextBox>("server_input");
m_server_inputbox->set_text(Config::read_string("Mail", "Connection", "Server", ""));