Skip to content
This repository was archived by the owner on Jul 23, 2024. It is now read-only.

Commit f9914ce

Browse files
committed
fix: fix errro
1 parent d33b6ad commit f9914ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/plugins_list.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,15 @@
2828
from .modules.utils import buglog
2929
from .plugin_row import GradiencePluginRow
3030
from .plugins.hookspec import GradienceHooks
31+
from .constants import app_id
3132

3233

3334
class GradiencePluginsList:
3435
def __init__(self, win):
3536

3637
self.win = win
3738

38-
self.plugins = win.settings.get_list("plugins-enabled")
39+
self.plugins = Gio.Settings(app_id).get_list("plugins-enabled")
3940
buglog(self.plugins)
4041

4142
self.pm = pluggy.PluginManager("gradience")

0 commit comments

Comments
 (0)