mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Changing properties now only works in compiler mode
This commit is contained in:
parent
6fd4283171
commit
5c5f073dc1
@ -32,16 +32,22 @@
|
||||
</StackPanel>
|
||||
|
||||
<!-- Settings -->
|
||||
<Grid Grid.Row="1" Grid.Column="0" Margin="5">
|
||||
<Grid Grid.Row="1" Grid.Column="0" Margin="5" Name="PropertyCompilerGrid">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="30"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Image Grid.Row="0" Source="{Binding SplashScreenImage}" Stretch="Fill"></Image>
|
||||
<Button Grid.Row="1" Height="30" Command="{Binding OpenModListPropertiesCommand}">
|
||||
<Button Grid.Row="1" Height="30" Command="{Binding OpenModListPropertiesCommand}" IsEnabled="{Binding UIReady}">
|
||||
<TextBlock Text="Modlist Properties" FontSize="15" FontWeight="Bold"></TextBlock>
|
||||
</Button>
|
||||
</Grid>
|
||||
<Grid Grid.Row="1" Grid.Column="0" Margin="5" Name="PropertyInstallerGrid">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Image Grid.Row="0" Source="{Binding SplashScreenImage}" Stretch="Fill"></Image>
|
||||
</Grid>
|
||||
<!-- End Settings -->
|
||||
|
||||
<!-- Slideshow -->
|
||||
|
@ -44,6 +44,17 @@ namespace Wabbajack
|
||||
|
||||
_state._nexusSiteURL = "https://github.com/wabbajack-tools/wabbajack";
|
||||
|
||||
if(mode == RunMode.Compile)
|
||||
{
|
||||
PropertyCompilerGrid.Visibility = Visibility.Visible;
|
||||
PropertyInstallerGrid.Visibility = Visibility.Hidden;
|
||||
}
|
||||
else
|
||||
{
|
||||
PropertyCompilerGrid.Visibility = Visibility.Hidden;
|
||||
PropertyInstallerGrid.Visibility = Visibility.Visible;
|
||||
}
|
||||
|
||||
new Thread(() =>
|
||||
{
|
||||
if (mode == RunMode.Compile)
|
||||
|
Loading…
Reference in New Issue
Block a user