Skip to content

Commit

Permalink
extension: fix camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
Aryan20 committed Oct 28, 2023
1 parent 06ab36f commit f63d53f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,9 @@ class LogoMenuMenuButton extends PanelMenu.Button {
}

hideIconShadow() {
const IconShadow = this._settings.get_boolean('hide-icon-shadow');
const iconShadow = this._settings.get_boolean('hide-icon-shadow');

if(!IconShadow){
if(!iconShadow){
this.icon.add_style_class_name('system-status-icon');
} else {
this.icon.remove_style_class_name('system-status-icon');
Expand Down

0 comments on commit f63d53f

Please sign in to comment.