DocumentPropertiesDialogV2 still not ready for prime time, something to do with GtkStackSwitcher

This commit is contained in:
Michael Becker 2019-12-14 04:53:02 -05:00
parent 1e6c6f56ae
commit bd5d5912ab
No known key found for this signature in database
GPG Key ID: 389DFF5D73781A12

View File

@ -626,6 +626,7 @@ namespace UniversalEditor.UserInterface
#region IHostApplicationWindow implementation
public void OpenFile()
{
/*
using (DocumentPropertiesDialogV2 dlg = new DocumentPropertiesDialogV2 ())
{
DialogResult result = dlg.ShowDialog ();
@ -639,7 +640,7 @@ namespace UniversalEditor.UserInterface
OpenFile(doc);
}
}
/*
*/
using (DocumentPropertiesDialog dlg = new DocumentPropertiesDialog())
{
if (dlg.ShowDialog() == DialogResult.OK)
@ -648,7 +649,6 @@ namespace UniversalEditor.UserInterface
OpenFile(doc);
}
}
*/
}
public void OpenFile(params string[] fileNames)