// SPDX-FileCopyrightText: 2022 Bruce Cowan <bruce@bcowan.me.uk> // // SPDX-License-Identifier: GPL-3.0-or-later using Gtk 4.0; ShortcutsWindow help_overlay { ShortcutsSection { ShortcutsGroup { title: "Application"; ShortcutsShortcut { title: "Preferences"; action-name: "app.prefs"; } } ShortcutsGroup { title: "Score"; ShortcutsShortcut { title: "Increment score"; accelerator: "<Ctrl>Up <Ctrl>Right"; } ShortcutsShortcut { title: "Decrement score"; accelerator: "<Ctrl>Down <Ctrl>Left"; } ShortcutsShortcut { title: "Show try filter"; accelerator: "<Ctrl>f"; } } } }