16 lines
293 B
Plaintext
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";
|
|
}
|
|
}
|
|
} |