We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae19572 commit 67791e8Copy full SHA for 67791e8
Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.cpp
@@ -737,6 +737,12 @@ namespace AzToolsFramework
737
[[maybe_unused]] int column,
738
const QModelIndex& parent) const
739
{
740
+ // Can only drop assets if a level is loaded!
741
+ if (rowCount() == 0)
742
+ {
743
+ return false;
744
+ }
745
+
746
if (action != Qt::DropAction::CopyAction)
747
748
// we can only 'move' entityIds, and that will already be handled at this point
0 commit comments