Skip to content

Commit

Permalink
Fix #13
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric PAILLE committed Oct 3, 2017
1 parent b02b8f9 commit 9f4c8cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ddt4all.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,8 @@ def __init__(self, parent = None):
self.treedock_widget = gui.QDockWidget(self)
self.treedock_widget.setWidget(screen_widget)
self.treeview_params = gui.QTreeWidget()
self.treeview_params.setSortingEnabled(True)
self.treeview_params.sortByColumn(0, core.Qt.AscendingOrder)
self.screenmenu = gui.QMenuBar()
treedock_layout = gui.QVBoxLayout()
treedock_layout.addWidget(self.screenmenu)
Expand Down
2 changes: 1 addition & 1 deletion ddtplugins
Submodule ddtplugins updated 1 files
+97 −0 megane3_ab_reset.py
4 changes: 2 additions & 2 deletions displaymod.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def initXML(self, input, inputdict):
self.editwidget = gui.QComboBox(self)
items_ref = self.ecurequestsparser.data[text].items

for key in items_ref.keys():
for key in sorted(items_ref.keys()):
self.editwidget.addItem(key)

self.editwidget.resize(rect['width'] - width, rect['height'])
Expand Down Expand Up @@ -589,7 +589,7 @@ def initJson(self, jsoninput, inputdict):
self.editwidget = gui.QComboBox(self)
items_ref = self.ecurequestsparser.data[text].items

for key in items_ref.keys():
for key in sorted(items_ref.keys()):
self.editwidget.addItem(key)


Expand Down

0 comments on commit 9f4c8cd

Please sign in to comment.