From: daid Date: Thu, 26 Jul 2012 15:32:28 +0000 (+0200) Subject: Insert the copy after the current one in the project planner, not at the end of the... X-Git-Tag: 12.08~20 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=44c38bf924026c5c6a5d87f79b2eea291c44f139;p=cura.git Insert the copy after the current one in the project planner, not at the end of the list. --- diff --git a/Cura/gui/projectPlanner.py b/Cura/gui/projectPlanner.py index 521dce38..71f208bc 100644 --- a/Cura/gui/projectPlanner.py +++ b/Cura/gui/projectPlanner.py @@ -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()