Skip to content

Commit

Permalink
partial fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MattByName committed Aug 18, 2024
1 parent feea549 commit 3314f1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ export default class ColorTinter extends Extension {

// Hide Overlay
hide() {
let effect = Clutter.ColorizeEffect;
let effect = ColorEffect;
this._toggleGlobalEffect('ColorTintOverlay', effect, {tint: this.getOverlayColor()});
overlay_active = false;
}

// Show Overlay
show() {
let effect = Clutter.ColorizeEffect;
let effect = ColorEffect;
this._toggleGlobalEffect('ColorTintOverlay', effect, {tint: this.getOverlayColor()});
overlay_active = true;
}
Expand Down

0 comments on commit 3314f1c

Please sign in to comment.