Skip to content

Commit 5f30c29

Browse files
committed
Explicitly set ornament NONE for unselected items
So items are aligned well in GNOME 45. It sets them HIDE by default
1 parent 0e2e222 commit 5f30c29

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

[email protected]/extension.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ const EEPSIndicator = GObject.registerClass(
140140
let _menuItem = new PopupMenu.PopupMenuItem(_(element));
141141
if (element === lastUsedPreset)
142142
_menuItem.setOrnament(PopupMenu.Ornament.DOT);
143+
else
144+
_menuItem.setOrnament(PopupMenu.Ornament.NONE);
143145

144146
_menuItem.connect('activate', () => {
145147
this._loadPreset(element, command);

0 commit comments

Comments
 (0)