Skip to content

Commit

Permalink
budgie-menu: Show terminal applications in the menu (#581)
Browse files Browse the repository at this point in the history
Fixes #554

Signed-off-by: Evan Maddock <maddock.evan@vivaldi.net>
  • Loading branch information
EbonJaeger committed May 26, 2024
1 parent dda737e commit bfa86bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/appindexer/AppIndex.vala
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,7 @@ namespace Budgie {
// We have to make sure to add BCC panel items because they
// have NoDisplay set, so this would otherwise exclude them.
// Showing/hiding them is handled by the UI layer.
bool should_skip = (!app_info.should_show() && !is_control_center_panel) ||
(app_info.get_boolean("Terminal"));
bool should_skip = !app_info.should_show() && !is_control_center_panel;

if (should_skip) {
return;
Expand Down

0 comments on commit bfa86bb

Please sign in to comment.