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
On table.py, on the EndpointTableModel class, the add() method does not refresh the table because of the issues I previously had with fireTableDataInserted after a clear() call when the table was sorted, where the insertion would happen at an offset which would trigger a KeyError in getEndpoint. See #9.
Now, clear(), update() and setFuzzed() all trigger the update of the table, but not add(). I think that all methods should be updated in such a way that they don't trigger the update for consistency, and we should make that the responsibility of the caller.
The text was updated successfully, but these errors were encountered:
On
table.py
, on theEndpointTableModel
class, theadd()
method does not refresh the table because of the issues I previously had withfireTableDataInserted
after aclear()
call when the table was sorted, where the insertion would happen at an offset which would trigger aKeyError
ingetEndpoint
. See #9.Now,
clear()
,update()
andsetFuzzed()
all trigger the update of the table, but notadd()
. I think that all methods should be updated in such a way that they don't trigger the update for consistency, and we should make that the responsibility of the caller.The text was updated successfully, but these errors were encountered: