Skip to content

Commit

Permalink
Merge branch 'rlueder-fix/290_incorrect_active_highlight'
Browse files Browse the repository at this point in the history
  • Loading branch information
Tudmotu committed Oct 12, 2022
2 parents 0f0dc64 + 6e68b16 commit f8aee6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ class ClipboardIndicator extends PanelMenu.Button {
});
}
}
else if (itemIndex >= 0 && itemIndex < registry.length - 1) {
else if (itemIndex >= 0 && itemIndex < registry.length) {
const item = that._findItem(text);
that._selectMenuItem(item, false);

Expand Down

0 comments on commit f8aee6f

Please sign in to comment.