SonyWWS/ATF

Panel visiblity status is not reflected in the "Window" menu

Opened this issue · 4 comments

Our tool has multiple panes that can have their visibility status toggled by clicking on their menu item in the "Window" menu. The issue is that those menu items always have a check mark next to them, no matter the visibility status. Repro steps:

  1. Add a OutputService to your program
  2. Launch program and notice the "Output" menu item in the "Window" menu is checked and the panel is visible.
  3. Click the "Output" menu item.
  4. Notice that the panel has been hidden.
  5. Click on the "Window" menu again and notice that the "Output" menu item is still checked.

Expected that the "Output" menu item is no longer checked because the panel is not visible.

I believe I have identified that the issue is that the CommandInfo is never updated after the program is initialized. I came up with a solution by modifying CommandService.item_Click :

ICommandClient client = GetClientOrActiveClient(tag);
if (client != null && client.CanDoCommand(tag))
{
client.DoCommand(tag);
UpdateCommand(tag); //Force the command status to be updated
}

My question is if this is the correct fix or if there is a better way to accomplish the desired behavior.

Please keep your local fix as long as it works.
I will try to reproduce this bug and update this issue when I get a chance.
So let us keep this issue open until then.
Alan

Hello Alan,

Any updates on this?

Sorry I don't any update at this time.
Currently I don't have any time to work on ATF because of internal projects.
I will update ATF when I get a chance but I don't any time estimate.

Thanks
Alan

I couldn't reproduce the issue with the steps you provided using master branch.
if you are using anything other than master branch, please use master branch instead.
Due to lack of time my current plan to update only master branch.

If anyone else experiencing this issue please let me, I will keep this tracker open.