You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v1.10
Ok here is the problem. I have a DiGraph (see Suggestions Issue - oh that was another wish to get an arrow or whatever for Directional graphs) where two nodes point to each other.
v1.10
Ok here is the problem. I have a DiGraph (see Suggestions Issue - oh that was another wish to get an arrow or whatever for Directional graphs) where two nodes point to each other.
nw = nx.DiGraph()
nw.add_edges_from([(1,2), (2,3), (2,4), (1,4), (3,5), (3,2)])
app = Viewer(nw)
app.mainloop()
In a DiGraph 2->3 and 3->2 so the first zoom cause the problem. Maybe both edges get drawn but only one is zoomed.
Here is a quick hack to fix this in GraphCanvas._plot_graph:
The text was updated successfully, but these errors were encountered: