Insert the copy after the current one in the project planner, not at the end of the list.

This commit is contained in:
daid 2012-07-26 17:32:28 +02:00
parent 9a4179e31d
commit 44c38bf924

View File

@ -462,7 +462,7 @@ class projectPlanner(wx.Frame):
return
item = self.selection.clone()
self.list.append(item)
self.list.insert(self.list.index(self.selection), item)
self.selection = item
self._updateListbox()