diff --git a/ROMVault2/FrmSetDir.cs b/ROMVault2/FrmSetDir.cs index 27512e6..b646f2a 100644 --- a/ROMVault2/FrmSetDir.cs +++ b/ROMVault2/FrmSetDir.cs @@ -80,7 +80,7 @@ namespace ROMVault2 { ShowNewFolderButton = true, Description = Resources.FrmSetDir_BtnSetRomLocationClick_Please_select_a_folder_for_This_Rom_Set, - RootFolder = Environment.SpecialFolder.DesktopDirectory, + RootFolder = (Settings.IsMono ? Environment.SpecialFolder.MyComputer : Environment.SpecialFolder.DesktopDirectory), SelectedPath = DBHelper.GetRealPath(_datLocation) }; if (browse.ShowDialog() == DialogResult.OK) diff --git a/ROMVault2/FrmSettings.cs b/ROMVault2/FrmSettings.cs index dc98973..371e042 100644 --- a/ROMVault2/FrmSettings.cs +++ b/ROMVault2/FrmSettings.cs @@ -88,7 +88,7 @@ namespace ROMVault2 { ShowNewFolderButton = true, Description = Resources.FrmSettings_BtnDatClick_Please_select_a_folder_for_DAT_Root, - RootFolder = Environment.SpecialFolder.DesktopDirectory, + RootFolder = (Settings.IsMono ? Environment.SpecialFolder.MyComputer : Environment.SpecialFolder.DesktopDirectory), SelectedPath = Settings.DatRoot }; diff --git a/ROMVault2/Report.cs b/ROMVault2/Report.cs index 373f77c..d801e8d 100644 --- a/ROMVault2/Report.cs +++ b/ROMVault2/Report.cs @@ -40,7 +40,7 @@ namespace ROMVault2 { ShowNewFolderButton = true, Description = @"Please select a folder for Dats", - RootFolder = Environment.SpecialFolder.DesktopDirectory, + RootFolder = (Settings.IsMono ? Environment.SpecialFolder.MyComputer : Environment.SpecialFolder.DesktopDirectory), SelectedPath = @"apps" };