On Mon Feb 5 11:23:00 2024 +0000, Hans Leidekker wrote:
Can you explain why the existing code doesn't work?
TortoiseGit creates the selection treeview first, so when the first element gets selected, the other controls can't update yet (since they don't exit).
I considered sending the control an event after they're created so they can update their contents, but that would need to duplicate the logic inside `dialog_seltree_handler`.
The easiest way is to wait until all controls are created, then a selection change in the tree will be able to update all other controls properly.