Pass tool.Config.PathEntryCollection instead of the whole tool

This commit is contained in:
YoshiRulz 2021-01-18 14:49:31 +10:00
parent 7acc9a0170
commit 253a24edd6
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 5 additions and 5 deletions
src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler

View File

@ -127,7 +127,7 @@ namespace BizHawk.Client.EmuHawk
Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top
};
var mdf = new MultiDiskFileSelector(this, MainForm, () => MainForm.CurrentlyOpenRom)
var mdf = new MultiDiskFileSelector(MainForm, Config.PathEntries, () => MainForm.CurrentlyOpenRom)
{
Location = UIHelper.Scale(new Point(7, 12)),
Width = groupBox.ClientSize.Width - UIHelper.ScaleX(13),

View File

@ -11,7 +11,7 @@ namespace BizHawk.Client.EmuHawk
{
private readonly Func<string> _getLoadedRomNameCallback;
private readonly ToolFormBase _parent;
private readonly PathEntryCollection _pathEntries;
public IDialogController DialogController { get; }
@ -32,11 +32,11 @@ namespace BizHawk.Client.EmuHawk
OnNameChanged(EventArgs.Empty);
}
public MultiDiskFileSelector(ToolFormBase parent, IDialogController dialogController, Func<string> getLoadedRomNameCallback)
public MultiDiskFileSelector(IDialogController dialogController, PathEntryCollection pathEntries, Func<string> getLoadedRomNameCallback)
{
DialogController = dialogController;
_pathEntries = pathEntries;
_getLoadedRomNameCallback = getLoadedRomNameCallback;
_parent = parent;
InitializeComponent();
PathBox.TextChanged += HandleLabelTextChanged;
}
@ -75,7 +75,7 @@ namespace BizHawk.Client.EmuHawk
{
using var ofd = new OpenFileDialog
{
InitialDirectory = _parent.Config.PathEntries.RomAbsolutePath(),
InitialDirectory = _pathEntries.RomAbsolutePath(),
Filter = RomLoader.RomFilter,
RestoreDirectory = true
};