| 170 | } |
| 171 | |
| 172 | Set<InterfaceAction> KeyBindings::actions(Key key) const { |
| 173 | return actions(KeyChord{key, KeyMod::NoMod}); |
| 174 | } |
| 175 | |
| 176 | Set<InterfaceAction> KeyBindings::actions(InputEvent const& event) const { |
| 177 | if (auto keyDown = event.ptr<KeyDownEvent>()) |