From 44c38bf924026c5c6a5d87f79b2eea291c44f139 Mon Sep 17 00:00:00 2001 From: daid Date: Thu, 26 Jul 2012 17:32:28 +0200 Subject: [PATCH] Insert the copy after the current one in the project planner, not at the end of the list. --- Cura/gui/projectPlanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.30.2