Fixed a crash on copy/paste, when ObjectList has no selection. Related to #5517
This commit is contained in:
parent
ea327c2d8c
commit
6c399052c6
1 changed files with 2 additions and 0 deletions
|
@ -1070,6 +1070,8 @@ bool ObjectList::copy_to_clipboard()
|
|||
{
|
||||
wxDataViewItemArray sels;
|
||||
GetSelections(sels);
|
||||
if (sels.IsEmpty())
|
||||
return false;
|
||||
ItemType type = m_objects_model->GetItemType(sels.front());
|
||||
if (!(type & (itSettings | itLayer | itLayerRoot))) {
|
||||
m_clipboard.reset();
|
||||
|
|
Loading…
Reference in a new issue