mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-06 20:41:41 +00:00
12 lines
300 B
Python
12 lines
300 B
Python
|
from gi.repository import Gtk, Adw
|
||
|
|
||
|
from .constants import rootdir
|
||
|
|
||
|
|
||
|
@Gtk.Template(resource_path=f"{rootdir}/ui/no_plugin_pref.ui")
|
||
|
class GradienceNoPluginPrefWindow(Adw.Window):
|
||
|
__gtype_name__ = "GradienceNoPluginPrefWindow"
|
||
|
|
||
|
def __init__(self, **kwargs):
|
||
|
super().__init__(**kwargs)
|