Paul Brodersen
                                            Paul Brodersen
                                        
                                    Could you describe the intended behaviour in excruciating detail for me? As in: > 1. The user selects multiple nodes with the window selector or by clicking on multiple node...
> so that we could select all the desired vertices by dragging the left mouse button, and then press the button to add a new node Is this a different...
I haven't heard from you in a while, so I am assuming that the issue got resolved on your end. Feel free to re-open if that is not the case.
Welcome back! Possible? Sure. But it seems you already got it covered (or how else did you make the gif?).
I made some changes to the dev branch to make the implementation of the desired feature more straightforward. Now the desired functionality boils down to the following class: ```python import...
> In our software we have a class that inherits from `EditableGraph` I haven't tested If the approach above works seamlessly if you inherit from `EditableGraph` instead of `MutableGraph`. Are...
Thanks for the reminder! ;-) Have you tested the solution above if all features still work when you inherit from ResizableGraph or EditableGraph? I don't know for sure which features...
Sorry, I just noticed that I forgot to answer. I can't reproduce the problem. 1. Are you sure that you are using the latest version from the dev branch? 2....
I bit the bullet and read what looked like the relevant commits in your repo. The first issue I noticed is that you added a `_add_node` method to your `ResizableGraph`....
Hi, thanks for raising the issue. 1. Have you changed the value of `k`? This parameter determines the straightness of the edges. ```python g = Graph(triangle, edge_layout='curved', edge_layout_kwargs=dict(k=0.025)) ``` 2....