> Yep. If you do something in an Accepting handler you need to set Cancel to indicate that. _Originally posted by @tig in [#4022](https://github.com/gui-cs/Terminal.Gui/issues/4022#issuecomment-2781885436)_ I goofed in using `CancelEventArgs` as "Handled" just makes more sense in most cases. Related: - #3913 Fix is straight forward but will touch a ton of files: ```diff -public class CommandEventArgs : CancelEventArgs +public class CommandEventArgs : HandledEventArgs ```