Index: Core/Common/src/Core.Common.Gui/Commands/GuiExportHandler.cs =================================================================== diff -u -r8dbe192f0fd57f64130aa0ca5eeba42aa75a17c6 -rec46cc1668e8fb513e2ea38564a1996ee19dd768 --- Core/Common/src/Core.Common.Gui/Commands/GuiExportHandler.cs (.../GuiExportHandler.cs) (revision 8dbe192f0fd57f64130aa0ca5eeba42aa75a17c6) +++ Core/Common/src/Core.Common.Gui/Commands/GuiExportHandler.cs (.../GuiExportHandler.cs) (revision ec46cc1668e8fb513e2ea38564a1996ee19dd768) @@ -121,8 +121,7 @@ using (var saveFileDialog = new SaveFileDialog { Filter = exportInfo.FileFilter, - Title = Resources.SaveFileDialog_Title, - RestoreDirectory = true + Title = Resources.SaveFileDialog_Title }) { if (saveFileDialog.ShowDialog(dialogParent) == DialogResult.OK) Index: Core/Common/src/Core.Common.Gui/Commands/GuiImportHandler.cs =================================================================== diff -u -r8dbe192f0fd57f64130aa0ca5eeba42aa75a17c6 -rec46cc1668e8fb513e2ea38564a1996ee19dd768 --- Core/Common/src/Core.Common.Gui/Commands/GuiImportHandler.cs (.../GuiImportHandler.cs) (revision 8dbe192f0fd57f64130aa0ca5eeba42aa75a17c6) +++ Core/Common/src/Core.Common.Gui/Commands/GuiImportHandler.cs (.../GuiImportHandler.cs) (revision ec46cc1668e8fb513e2ea38564a1996ee19dd768) @@ -114,8 +114,7 @@ { Multiselect = true, Filter = importer.FileFilter, - Title = Resources.OpenFileDialog_Title, - RestoreDirectory = true + Title = Resources.OpenFileDialog_Title }) { if (dialog.ShowDialog(dialogParent) == DialogResult.OK) Index: Core/Common/src/Core.Common.Gui/Commands/StorageCommandHandler.cs =================================================================== diff -u -r8dbe192f0fd57f64130aa0ca5eeba42aa75a17c6 -rec46cc1668e8fb513e2ea38564a1996ee19dd768 --- Core/Common/src/Core.Common.Gui/Commands/StorageCommandHandler.cs (.../StorageCommandHandler.cs) (revision 8dbe192f0fd57f64130aa0ca5eeba42aa75a17c6) +++ Core/Common/src/Core.Common.Gui/Commands/StorageCommandHandler.cs (.../StorageCommandHandler.cs) (revision ec46cc1668e8fb513e2ea38564a1996ee19dd768) @@ -108,8 +108,7 @@ using (var openFileDialog = new OpenFileDialog { Filter = projectPersistor.FileFilter, - Title = Resources.OpenFileDialog_Title, - RestoreDirectory = true + Title = Resources.OpenFileDialog_Title }) { if (openFileDialog.ShowDialog(dialogParent) != DialogResult.Cancel && ContinueIfHasChanges()) @@ -260,8 +259,7 @@ { Title = Resources.SaveFileDialog_Title, Filter = projectPersistor.FileFilter, - FileName = projectName, - RestoreDirectory = true + FileName = projectName }) { if (saveFileDialog.ShowDialog() != DialogResult.OK) Index: Core/Plugins/src/Core.Plugins.Map/Legend/MapLegendView.cs =================================================================== diff -u -r8dbe192f0fd57f64130aa0ca5eeba42aa75a17c6 -rec46cc1668e8fb513e2ea38564a1996ee19dd768 --- Core/Plugins/src/Core.Plugins.Map/Legend/MapLegendView.cs (.../MapLegendView.cs) (revision 8dbe192f0fd57f64130aa0ca5eeba42aa75a17c6) +++ Core/Plugins/src/Core.Plugins.Map/Legend/MapLegendView.cs (.../MapLegendView.cs) (revision ec46cc1668e8fb513e2ea38564a1996ee19dd768) @@ -190,8 +190,7 @@ using (var dialog = new OpenFileDialog { Filter = string.Format("{0} (*.shp)|*.shp", MapResources.MapLegendView_ShowSelectShapeFileDialog_Shape_file), - Title = GuiResources.OpenFileDialog_Title, - RestoreDirectory = true + Title = GuiResources.OpenFileDialog_Title }) { if (dialog.ShowDialog(parentWindow) == DialogResult.OK) Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs =================================================================== diff -u -r68fb2bea16670fc88e626118a808560690610e57 -rec46cc1668e8fb513e2ea38564a1996ee19dd768 --- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision 68fb2bea16670fc88e626118a808560690610e57) +++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision ec46cc1668e8fb513e2ea38564a1996ee19dd768) @@ -1127,8 +1127,7 @@ using (var dialog = new OpenFileDialog { Filter = string.Format("{0} (*.sqlite)|*.sqlite", RingtoetsFormsResources.SelectHydraulicBoundaryDatabaseFile_FilterName), - Title = GuiResources.OpenFileDialog_Title, - RestoreDirectory = true + Title = GuiResources.OpenFileDialog_Title }) { if (dialog.ShowDialog(Gui.MainWindow) == DialogResult.OK)