From bd5d5912aba916339885adaefade3166cdcdc50d Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 14 Dec 2019 04:53:02 -0500 Subject: [PATCH] DocumentPropertiesDialogV2 still not ready for prime time, something to do with GtkStackSwitcher --- CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs b/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs index 402b314c..bfef4f28 100644 --- a/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs +++ b/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs @@ -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)