Actually save the value for a CustomOptionFile

This commit is contained in:
Michael Becker 2014-11-11 15:57:08 -05:00
parent db82070ee3
commit 338acecff0

View File

@ -1237,6 +1237,11 @@ namespace UniversalEditor.UserInterface
CustomOptionText itm = (eo as CustomOptionText);
pi.SetValue(df, Convert.ChangeType(itm.Value, pi.PropertyType), null);
}
else if (eo is CustomOptionFile)
{
CustomOptionFile itm = (eo as CustomOptionFile);
pi.SetValue(df, Convert.ChangeType(itm.Value, pi.PropertyType), null);
}
}
return true;