Merge pull request #1988 from krsoninikhil/ordereddict

Closes #1977
This commit is contained in:
Maximilian Hils 2017-02-04 13:46:44 +01:00 committed by GitHub
commit 155670766e

View File

@ -102,7 +102,7 @@ orders = [
class View(collections.Sequence):
def __init__(self):
super().__init__()
self._store = {}
self._store = collections.OrderedDict()
self.filter = matchall
# Should we show only marked flows?
self.show_marked = False