Skip to content

Commit

Permalink
appIconIndicators: Use lambda-style callbacks for better debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
3v1n0 committed Aug 26, 2024
1 parent d7687c7 commit 1a28cf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appIconIndicators.js
Original file line number Diff line number Diff line change
Expand Up @@ -750,11 +750,11 @@ export class UnityIndicator extends IndicatorBase {
], [
St.ThemeContext.get_for_stage(global.stage),
'changed',
this.updateNotificationBadgeStyle.bind(this),
() => this.updateNotificationBadgeStyle(),
], [
this._source._iconContainer,
'notify::size',
this.updateNotificationBadgeStyle.bind(this),
() => this.updateNotificationBadgeStyle(),
], [
this._source,
'style-changed',
Expand Down

0 comments on commit 1a28cf3

Please sign in to comment.