Skip to content

Commit

Permalink
Merge branch 'rlueder-fix/358_private_mode'
Browse files Browse the repository at this point in the history
  • Loading branch information
Tudmotu committed Oct 19, 2022
2 parents 993c54d + cf92085 commit 07751ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.zip

.idea/
4 changes: 2 additions & 2 deletions extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ class ClipboardIndicator extends PanelMenu.Button {

menuItem.actor.add_child(icofavBtn);
menuItem.icofavBtn = icofavBtn;
menuItem.favoritePressId = icofavBtn.connect('button-press-event',
menuItem.favoritePressId = icofavBtn.connect('clicked',
Lang.bind(this, function () {
this._favoriteToggle(menuItem);
})
Expand All @@ -307,7 +307,7 @@ class ClipboardIndicator extends PanelMenu.Button {

menuItem.actor.add_child(icoBtn);
menuItem.icoBtn = icoBtn;
menuItem.deletePressId = icoBtn.connect('button-press-event',
menuItem.deletePressId = icoBtn.connect('clicked',
Lang.bind(this, function () {
this._removeEntry(menuItem, 'delete');
})
Expand Down

0 comments on commit 07751ad

Please sign in to comment.