mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 01:06:35 +00:00
MainForm - Fix null exception when droping in anything other than a file onto start page
This commit is contained in:
@@ -1944,7 +1944,7 @@ namespace PckStudio
|
||||
private void OpenPck_DragEnter(object sender, DragEventArgs e)
|
||||
{
|
||||
pckOpen.Image = Resources.pckDrop;
|
||||
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
|
||||
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop) ?? Array.Empty<string>();
|
||||
foreach (string file in files)
|
||||
{
|
||||
string ext = Path.GetExtension(file);
|
||||
|
||||
Reference in New Issue
Block a user