1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:55:08 +00:00

SystemMenu: Silence debug spam on startup

This commit is contained in:
Andreas Kling 2020-02-22 17:01:06 +01:00
parent 28f1486627
commit 21c78e2fc3

View file

@ -40,6 +40,8 @@
#include <sys/utsname.h>
#include <unistd.h>
//#define SYSTEM_MENU_DEBUG
struct AppMetadata {
String executable;
String name;
@ -136,8 +138,10 @@ NonnullRefPtr<GUI::Menu> build_system_menu()
if (!app.icon_path.is_empty())
icon = Gfx::Bitmap::load_from_file(app.icon_path);
#ifdef SYSTEM_MENU_DEBUG
if (icon)
dbg() << "App " << app.name << " has icon with size " << icon->size();
#endif
auto parent_menu = g_app_category_menus.get(app.category).value_or(*system_menu);
parent_menu->add_action(GUI::Action::create(app.name, icon.ptr(), [app_identifier](auto&) {