mirror of
https://github.com/LBPUnion/UnionPatcher.git
synced 2025-07-29 12:18:46 +00:00
Test requiring staging directory on Windows
This commit is contained in:
parent
47af7d6929
commit
480abb2b58
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,8 @@ public class ModeSelectionForm : Form {
|
|||
|
||||
private void openRemotePatcher(object sender, EventArgs e)
|
||||
{
|
||||
if (OSUtil.GetPlatform() == OSPlatform.OSX)
|
||||
OSPlatform platform = OSUtil.GetPlatform();
|
||||
if (platform == OSPlatform.OSX || platform == OSPlatform.Windows)
|
||||
{
|
||||
Gui.CreateOkDialog("Workaround", "UnionPatcher RemotePatcher requires a staging folder on macOS, please set this to the directory of the UnionPatcher app!");
|
||||
SelectFolderDialog dialog = new SelectFolderDialog();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue