(KeyboardKeys key)
| 102 | |
| 103 | /// <inheritdoc /> |
| 104 | public override bool OnKeyDown(KeyboardKeys key) |
| 105 | { |
| 106 | if (base.OnKeyDown(key)) |
| 107 | return true; |
| 108 | |
| 109 | // Fallback to the edit window for shortcuts |
| 110 | var editor = Editor.Instance; |
| 111 | return editor.Windows.EditWin.InputActions.Process(editor, this, key); |
| 112 | } |
| 113 | |
| 114 | /// <inheritdoc /> |
| 115 | protected override void PerformLayoutAfterChildren() |