Pass tool.Config.PathEntryCollection instead of the whole tool
This commit is contained in:
parent
7acc9a0170
commit
253a24edd6
src/BizHawk.Client.EmuHawk/tools/MultiDiskBundler
|
@ -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),
|
||||
|
|
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue