diff --git a/Userland/Services/Taskbar/main.cpp b/Userland/Services/Taskbar/main.cpp index c7d1291c59..9dc465f9d1 100644 --- a/Userland/Services/Taskbar/main.cpp +++ b/Userland/Services/Taskbar/main.cpp @@ -166,8 +166,10 @@ NonnullRefPtr build_system_menu() // Then we create and insert all the app menu items into the right place. int app_identifier = 0; for (const auto& app : g_apps) { - if (app.category == "Settings"sv) + if (app.category == "Settings"sv) { + ++app_identifier; continue; + } auto icon = GUI::FileIconProvider::icon_for_executable(app.executable).bitmap_for_size(16);