Fixed a crash on copy/paste, when ObjectList has no selection. Related to #5517

This commit is contained in:
YuSanka 2020-12-22 10:42:47 +01:00
parent ea327c2d8c
commit 6c399052c6

View file

@ -1070,6 +1070,8 @@ bool ObjectList::copy_to_clipboard()
{ {
wxDataViewItemArray sels; wxDataViewItemArray sels;
GetSelections(sels); GetSelections(sels);
if (sels.IsEmpty())
return false;
ItemType type = m_objects_model->GetItemType(sels.front()); ItemType type = m_objects_model->GetItemType(sels.front());
if (!(type & (itSettings | itLayer | itLayerRoot))) { if (!(type & (itSettings | itLayer | itLayerRoot))) {
m_clipboard.reset(); m_clipboard.reset();