Skip to content

Commit

Permalink
Fix an issue preventing dragging
Browse files Browse the repository at this point in the history
  • Loading branch information
LaughingLeader committed Sep 1, 2023
1 parent f8f01b9 commit 51ac30b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DivinityModManagerCore/Models/DivinityModData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public DivinityModData(bool isBaseGameMod = false) : base()
}
else
{
CanDrag = isForceLoaded && !isForceLoadedMergedMod;
CanDrag = !isForceLoaded || isForceLoadedMergedMod;
}
});

Expand Down

1 comment on commit 51ac30b

@Diginon
Copy link

@Diginon Diginon commented on 51ac30b Sep 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please can you make this an update

Please sign in to comment.