More rebase fixes, I love it

This commit is contained in:
erri120 2019-11-11 19:22:38 +01:00 committed by Timothy Baldridge
parent 184c891995
commit 3724d0d296
2 changed files with 6 additions and 9 deletions

View File

@ -267,7 +267,7 @@ namespace Wabbajack
if (installing) return false; if (installing) return false;
if (IsMO2ModList) if (IsMO2ModList)
return !loc && !download; return !loc && !download;
return !loc && !staging; return !staging && !download;
}) })
.ObserveOnGuiThread()); .ObserveOnGuiThread());
this.VisitWebsiteCommand = ReactiveCommand.Create( this.VisitWebsiteCommand = ReactiveCommand.Create(

View File

@ -277,11 +277,10 @@
</Grid.ColumnDefinitions> </Grid.ColumnDefinitions>
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="*" /> <RowDefinition Height="*" />
<RowDefinition Height="40" /> <RowDefinition Height="80" />
<RowDefinition Height="40" />
<RowDefinition Height="*" /> <RowDefinition Height="*" />
</Grid.RowDefinitions> </Grid.RowDefinitions>
<Grid Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" Grid.ColumnSpan="3" Visibility="{Binding IsMO2ModList, Converter={StaticResource bool2VisibilityConverter}}"> <Grid Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="3" Visibility="{Binding IsMO2ModList, Converter={StaticResource bool2VisibilityConverter}}">
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="40" /> <RowDefinition Height="40" />
<RowDefinition Height="40" /> <RowDefinition Height="40" />
@ -322,7 +321,7 @@
DataContext="{Binding DownloadLocation}" DataContext="{Binding DownloadLocation}"
FontSize="14" /> FontSize="14" />
</Grid> </Grid>
<Grid Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" Grid.ColumnSpan="3" Visibility="{Binding IsMO2ModList, Converter={StaticResource bool2VisibilityConverter}, ConverterParameter=False}"> <Grid Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="3" Visibility="{Binding IsMO2ModList, Converter={StaticResource bool2VisibilityConverter}, ConverterParameter=False}">
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="40" /> <RowDefinition Height="40" />
<RowDefinition Height="40" /> <RowDefinition Height="40" />
@ -341,7 +340,7 @@
Text="Staging Folder" Text="Staging Folder"
TextAlignment="Center" /> TextAlignment="Center" />
<local:FilePicker <local:FilePicker
Grid.Row="1" Grid.Row="0"
Grid.Column="2" Grid.Column="2"
Height="30" Height="30"
VerticalAlignment="Center" VerticalAlignment="Center"
@ -363,10 +362,8 @@
DataContext="{Binding DownloadLocation}" DataContext="{Binding DownloadLocation}"
FontSize="14" /> FontSize="14" />
</Grid> </Grid>
<Button <local:BeginButton
x:Name="BeginButton"
Grid.Row="1" Grid.Row="1"
Grid.RowSpan="2"
Grid.Column="4" Grid.Column="4"
Margin="0,0,25,0" Margin="0,0,25,0"
HorizontalAlignment="Right" HorizontalAlignment="Right"