diff options
Diffstat (limited to 'Userland/Applications/BrowserSettings/BrowserSettingsWidget.cpp')
-rw-r--r-- | Userland/Applications/BrowserSettings/BrowserSettingsWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/BrowserSettings/BrowserSettingsWidget.cpp b/Userland/Applications/BrowserSettings/BrowserSettingsWidget.cpp index 02a601734b..432b53bb88 100644 --- a/Userland/Applications/BrowserSettings/BrowserSettingsWidget.cpp +++ b/Userland/Applications/BrowserSettings/BrowserSettingsWidget.cpp @@ -59,7 +59,7 @@ private: BrowserSettingsWidget::BrowserSettingsWidget() { - try_load_from_gml(browser_settings_widget_gml).release_value_but_fixme_should_propagate_errors(); + load_from_gml(browser_settings_widget_gml).release_value_but_fixme_should_propagate_errors(); m_homepage_url_textbox = find_descendant_of_type_named<GUI::TextBox>("homepage_url_textbox"); m_homepage_url_textbox->set_text(Config::read_string("Browser"sv, "Preferences"sv, "Home"sv, default_homepage_url), GUI::AllowCallback::No); |