Got the Boolean values backwards, it's late

This commit is contained in:
Michael Becker 2014-08-10 01:21:53 -04:00
parent 927fb7d3ea
commit e115c7d3bf

View File

@ -404,11 +404,11 @@ namespace UniversalEditor.UserInterface.WindowsForms
public override bool ShowDataFormatOptionsDialog(ref DataFormat df, DataFormatOptionsDialogType type)
{
if (DataFormatOptionsDialog.ShowDialog(ref df, type) == DialogResult.OK)
if (DataFormatOptionsDialog.ShowDialog(ref df, type) == DialogResult.Cancel)
{
return true;
return false;
}
return false;
return true;
}
}
}