Skip to content

Commit

Permalink
fixed #109
Browse files Browse the repository at this point in the history
  • Loading branch information
aunetx committed Jul 25, 2021
1 parent fe9c04a commit 1aec583
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/appfolders.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,14 @@ var AppFoldersBlur = class AppFoldersBlur {

set_sigma(s) {
sigma = s;
this.blur_appfolders();
if (this.prefs.BLUR_APPFOLDERS.get())
this.blur_appfolders();
}

set_brightness(b) {
brightness = b;
this.blur_appfolders();
if (this.prefs.BLUR_APPFOLDERS.get())
this.blur_appfolders();
}

disable() {
Expand All @@ -215,7 +217,9 @@ var AppFoldersBlur = class AppFoldersBlur {
}
});

this._log(`before: ${this.connections.buffer}`)
this.connections.disconnect_all();
this._log(`after: ${this.connections.buffer}`)
}

_log(str) {
Expand Down

2 comments on commit 1aec583

@harshkhandeparkar
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are the logs intended or meant for debug?

@aunetx
Copy link
Owner Author

@aunetx aunetx commented on 1aec583 Jul 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ouh, sorry for this... This was not intended, should check more what I push :/
I will remove it in later releases, thanks a lot for noticing

Please sign in to comment.