I have noticed that actions in the footer no longer work by clicking them or using keyboard shortcuts (C^t, C^s, etc).
The BINDINGS defined in the CommandBuilder class no longer propagate to the parent Trogon class, where the handlers are defined (e.g., action_focus_command_tree).
Moving the BINDINGS to the Trogon class fixes the problem for me. Moving the handlers down to the CommandBuilder does as well, but I'm not sure which solution is better. Could this be an underlying issue with Textual?
I'm happy to open a PR and move the BINDINGS, just let me know if this is an ok solution.
I have noticed that actions in the footer no longer work by clicking them or using keyboard shortcuts (C^t, C^s, etc).
The
BINDINGS
defined in theCommandBuilder
class no longer propagate to the parentTrogon
class, where the handlers are defined (e.g.,action_focus_command_tree
).Moving the
BINDINGS
to the Trogon class fixes the problem for me. Moving the handlers down to theCommandBuilder
does as well, but I'm not sure which solution is better. Could this be an underlying issue with Textual?I'm happy to open a PR and move the BINDINGS, just let me know if this is an ok solution.