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:
parent
affb15f4d9
commit
b7a2279a3a
@ -174,10 +174,15 @@ namespace Wabbajack
|
||||
return new LambdaCommand(() => true, () => OpenModListProperties());
|
||||
}
|
||||
}
|
||||
|
||||
internal ModlistPropertiesWindow modlistPropertiesWindow;
|
||||
private void OpenModListProperties()
|
||||
{
|
||||
new ModlistPropertiesWindow().Show();
|
||||
if(modlistPropertiesWindow == null)
|
||||
{
|
||||
modlistPropertiesWindow = new ModlistPropertiesWindow(this);
|
||||
|
||||
}
|
||||
modlistPropertiesWindow.Show();
|
||||
}
|
||||
|
||||
public string _nexusSiteURL = null;
|
||||
|
Loading…
Reference in New Issue
Block a user