mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-06 12:34:00 +00:00
11 lines
300 B
Python
11 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)
|