can drag between modules

This commit is contained in:
2023-07-26 00:03:22 -06:00
parent 551346efe3
commit 900cf9b074
7 changed files with 140 additions and 134 deletions

View File

@@ -86,7 +86,7 @@
if(date != null)
{
DateTime d = date ?? throw new Exception("should not get here, error converting date from nullable");
dragContainer.DropCallback?.Invoke(d);
dragContainer.DropCallback?.Invoke(d, null);
}
}
}