Duplicate m_oldFixedState1
Status: Beta
Brought to you by:
morcen
In file DraggingManipulator.java function public void mouseDown(JPowerGraphMouseEvent e)
...
m_oldFixedState1 = m_draggedEdge.getFrom().isFixed();
m_oldFixedState1 = m_draggedEdge.getTo().isFixed();
...
should probably be:
...
m_oldFixedState1 = m_draggedEdge.getFrom().isFixed();
m_oldFixedState2 = m_draggedEdge.getTo().isFixed();
...