Change base class name

This commit is contained in:
Romain Vigier
2019-11-24 10:09:36 +01:00
parent 6eb56d1e52
commit 3b9a728340
+2 -2
View File
@@ -24,7 +24,7 @@ const GSETTINGS_SCHEMA = 'org.gnome.desktop.interface';
const GSETTINGS_PROPERTY = 'gtk-theme';
class Extension {
class Switcher {
enable() {
this.theme = new Themer();
@@ -173,5 +173,5 @@ class Nightlighter {
function init() {
return new Extension();
return new Switcher();
}