Commit ddf59412 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Network: Fix edge table set node.

Showing with 18 additions and 1 deletion
+18 -1
...@@ -143,7 +143,8 @@ class GraphTableModel(QAbstractTableModel): ...@@ -143,7 +143,8 @@ class GraphTableModel(QAbstractTableModel):
self.headers[index.column()] == "node2"): self.headers[index.column()] == "node2"):
node = self.graph.node(value) node = self.graph.node(value)
self._undo.push( self._undo.push(
SetCommand( SetNodeCommand(
self.graph,
self.rows[index.row()], self.rows[index.row()],
self.headers[index.column()], self.headers[index.column()],
node node
......
...@@ -94,6 +94,22 @@ class SetCommand(QUndoCommand): ...@@ -94,6 +94,22 @@ class SetCommand(QUndoCommand):
def redo(self): def redo(self):
self._el[self._column] = self._new self._el[self._column] = self._new
class SetNodeCommand(QUndoCommand):
def __init__(self, graph, element, column, new_value):
QUndoCommand.__init__(self)
self._el = element
self._column = column
self._old = graph.node(self._el[self._column])
self._new = new_value
def undo(self):
self._el[self._column] = self._old
def redo(self):
self._el[self._column] = self._new
class EnableEdgeCommand(QUndoCommand): class EnableEdgeCommand(QUndoCommand):
def __init__(self, edge, enable): def __init__(self, edge, enable):
QUndoCommand.__init__(self) QUndoCommand.__init__(self)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment