// 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"; action-name: "win.score-changed::up"; } ShortcutsShortcut { title: "Decrement score"; action-name: "win.score-changed::down"; } ShortcutsShortcut { title: "Show try filter"; action-name: "win.show-try-filter"; } } } }