diff --git a/Terminal.Gui/Views/Shortcut.cs b/Terminal.Gui/Views/Shortcut.cs index f8b5be4cf..175f8f569 100644 --- a/Terminal.Gui/Views/Shortcut.cs +++ b/Terminal.Gui/Views/Shortcut.cs @@ -483,11 +483,10 @@ public class Shortcut : View, IOrientation, IDesignable if (e.Context.Data != this) { // Forward command to ourselves - e.Cancel = InvokeCommand (Command.Select, new (Command.Select, null, null, this)) is true; - - return; + InvokeCommand (Command.Select, new (Command.Select, null, null, this)); } + // BUGBUG: This prevents NumericUpDown on statusbar in HexEditor from working e.Cancel = true; } }