mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-19 15:09:14 +08:00
Insert the copy after the current one in the project planner, not at the end of the list.
This commit is contained in:
parent
9a4179e31d
commit
44c38bf924
@ -462,7 +462,7 @@ class projectPlanner(wx.Frame):
|
|||||||
return
|
return
|
||||||
|
|
||||||
item = self.selection.clone()
|
item = self.selection.clone()
|
||||||
self.list.append(item)
|
self.list.insert(self.list.index(self.selection), item)
|
||||||
self.selection = item
|
self.selection = item
|
||||||
|
|
||||||
self._updateListbox()
|
self._updateListbox()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user