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.
2 parents 3024785 + 67791e8 commit 18e7c23Copy full SHA for 18e7c23
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