Skip to content

Commit

Permalink
Use control knob emoji instead of level slider.
Browse files Browse the repository at this point in the history
This results in better text alignment in the context menu on Windows.
  • Loading branch information
dstein64 committed Oct 30, 2021
1 parent 60fd4b3 commit 76b2718
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Auto Highlight",
"version": "3.4.5",
"version": "3.4.6",
"description": "*Auto Highlight* automatically highlights the important content on article pages.",
"options_ui": {
"page": "src/options/options.html"
Expand Down
2 changes: 1 addition & 1 deletion src/eventPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ chrome.permissions.onRemoved.addListener(function() {
'32': 'icons/state32x32.png',
};
} else {
properties.title = String.fromCodePoint('0x1F39A') + ' ' + properties.title;
properties.title = String.fromCodePoint('0x1F39B') + ' ' + properties.title;
}
chrome.contextMenus.create(properties);
for (let i = 0; i < NUM_HIGHLIGHT_STATES; ++i) {
Expand Down

0 comments on commit 76b2718

Please sign in to comment.