Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem with long port names #135

Open
emrecanbulut opened this issue Oct 8, 2021 · 0 comments
Open

Problem with long port names #135

emrecanbulut opened this issue Oct 8, 2021 · 0 comments

Comments

@emrecanbulut
Copy link

Hi,

If you create a SubTree with at least one node having a long port name, that node will be shown as the right-most node in the main tree once you expand the SubTree.

Can be reproduced with this XML:
(See in the XML Action1 comes before Action2 in the Sequence)

<?xml version="1.0"?>
<root main_tree_to_execute="BehaviorTree">
    <!-- ////////// -->
    <BehaviorTree ID="BehaviorTree">
        <SubTree ID="ExampleSubTree"/>
    </BehaviorTree>
    <!-- ////////// -->
    <BehaviorTree ID="ExampleSubTree">
        <Sequence>
            <Action ID="Action1" this_name_is_too_long=""/>
            <Action ID="Action2"/>
        </Sequence>
    </BehaviorTree>
    <!-- ////////// -->
    <TreeNodesModel>
        <Action ID="Action1">
            <input_port name="this_name_is_too_long"/>
        </Action>
        <Action ID="Action2"/>
        <SubTree ID="ExampleSubTree">
        </SubTree>
    </TreeNodesModel>
    <!-- ////////// -->
</root>

image

This seems somewhat similar to the issue #24 .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant