Files
VoidManifest/src/ui/shortcuts-dialog.blp
2025-12-02 16:51:17 +01:00

16 lines
293 B
Plaintext

using Gtk 4.0;
using Adw 1;
Adw.ShortcutsDialog {
Adw.ShortcutsSection {
title: _("Shortcuts");
Adw.ShortcutsItem {
title: _("Show Shortcuts");
action-name: "app.shortcuts";
}
Adw.ShortcutsItem {
title: _("Quit");
action-name: "app.quit";
}
}
}