Got the Boolean values backwards, it's late
This commit is contained in:
parent
927fb7d3ea
commit
e115c7d3bf
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user