mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Properties window will hide and show instead of open and close
This commit is contained in:
@ -174,10 +174,15 @@ namespace Wabbajack
|
|||||||
return new LambdaCommand(() => true, () => OpenModListProperties());
|
return new LambdaCommand(() => true, () => OpenModListProperties());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
internal ModlistPropertiesWindow modlistPropertiesWindow;
|
||||||
private void OpenModListProperties()
|
private void OpenModListProperties()
|
||||||
{
|
{
|
||||||
new ModlistPropertiesWindow().Show();
|
if(modlistPropertiesWindow == null)
|
||||||
|
{
|
||||||
|
modlistPropertiesWindow = new ModlistPropertiesWindow(this);
|
||||||
|
|
||||||
|
}
|
||||||
|
modlistPropertiesWindow.Show();
|
||||||
}
|
}
|
||||||
|
|
||||||
public string _nexusSiteURL = null;
|
public string _nexusSiteURL = null;
|
||||||
|
Reference in New Issue
Block a user