2020-08-02 17:18:28 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import gi
|
2024-05-26 18:29:10 +02:00
|
|
|
|
2023-01-08 18:20:30 +01:00
|
|
|
gi.require_version('Gtk', '4.0')
|
|
|
|
gi.require_version('Adw', '1')
|
2020-08-02 17:18:28 +02:00
|
|
|
from gi.repository import Gtk
|
|
|
|
|
|
|
|
|
2020-08-09 11:09:53 +02:00
|
|
|
@Gtk.Template(resource_path='/xyz/suruatoel/mcg/ui/shortcuts-dialog.ui')
|
2020-08-02 17:18:28 +02:00
|
|
|
class ShortcutsDialog(Gtk.ShortcutsWindow):
|
|
|
|
__gtype_name__ = 'McgShortcutsDialog'
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|