Skip to content

Commit

Permalink
appmenu: fix label width issue with gnome 3.32
Browse files Browse the repository at this point in the history
  • Loading branch information
jonian committed Mar 16, 2019
1 parent 181bf43 commit 8dc8e76
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion [email protected]/modules/applicationMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ var ApplicationMenu = new Lang.Class({
if (!title && focusApp)
title = focusApp.get_name();

if (title && title != current)
if (title && title != current) {
this.appMenu._label.set_text(title);

this.appMenu.container.hide();
this.appMenu.container.show();
}
}
});

0 comments on commit 8dc8e76

Please sign in to comment.