Browser: Make the about menu item look a little nicer

This commit is contained in:
Andreas Kling 2021-01-04 23:34:32 +01:00
parent da536c8d22
commit f0a59ab7fb
Notes: sideshowbarker 2024-07-19 00:06:34 +09:00

View file

@ -25,6 +25,7 @@
*/
#include "WindowActions.h"
#include <LibGUI/Icon.h>
#include <LibGUI/Window.h>
#include <LibGfx/Bitmap.h>
@ -64,7 +65,7 @@ WindowActions::WindowActions(GUI::Window& window)
&window);
m_about_action = GUI::Action::create(
"About", [this](const GUI::Action&) {
"About Browser", GUI::Icon::default_icon("app-browser").bitmap_for_size(16), [this](const GUI::Action&) {
if (on_about)
on_about();
},