mirror of
https://gitlab.com/adhami3310/Impression.git
synced 2025-10-06 00:32:46 +02:00
35 lines
712 B
Plaintext
35 lines
712 B
Plaintext
using Gtk 4.0;
|
|
|
|
ShortcutsWindow help_overlay {
|
|
modal: true;
|
|
|
|
ShortcutsSection {
|
|
section-name: "shortcuts";
|
|
max-height: 10;
|
|
|
|
ShortcutsGroup {
|
|
title: C_("shortcut window", "General");
|
|
|
|
ShortcutsShortcut {
|
|
title: C_("shortcut window", "Open File");
|
|
action-name: "win.open";
|
|
}
|
|
|
|
ShortcutsShortcut {
|
|
title: C_("shortcut window", "New Window");
|
|
action-name: "app.new-window";
|
|
}
|
|
|
|
ShortcutsShortcut {
|
|
title: C_("shortcut window", "Show Shortcuts");
|
|
action-name: "win.show-help-overlay";
|
|
}
|
|
|
|
ShortcutsShortcut {
|
|
title: C_("shortcut window", "Quit");
|
|
action-name: "app.quit";
|
|
}
|
|
}
|
|
}
|
|
}
|