Skip to content
Snippets Groups Projects
help-overlay.blp 624 B
Newer Older
Bruce Cowan's avatar
Bruce Cowan committed
// 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";
      }
    }
  }
}