diff options
Diffstat (limited to 'Userland/Applications/Browser/ConsoleWidget.cpp')
-rw-r--r-- | Userland/Applications/Browser/ConsoleWidget.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/ConsoleWidget.cpp b/Userland/Applications/Browser/ConsoleWidget.cpp index c52d4f8646..9f46618ce4 100644 --- a/Userland/Applications/Browser/ConsoleWidget.cpp +++ b/Userland/Applications/Browser/ConsoleWidget.cpp @@ -8,6 +8,7 @@ #include "ConsoleWidget.h" #include <AK/StringBuilder.h> +#include <Applications/Browser/Browser.h> #include <LibGUI/BoxLayout.h> #include <LibGUI/Button.h> #include <LibGUI/TextBox.h> @@ -60,7 +61,7 @@ ConsoleWidget::ConsoleWidget() auto& clear_button = bottom_container.add<GUI::Button>(); clear_button.set_fixed_size(22, 22); - clear_button.set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/delete.png").release_value_but_fixme_should_propagate_errors()); + clear_button.set_icon(g_icon_bag.delete_icon); clear_button.set_tooltip("Clear the console output"); clear_button.on_click = [this](auto) { clear_output(); |