Skip to content

Commit

Permalink
release: merge v2.4.1 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
rodriada000 committed Nov 19, 2019
2 parents 37153ec + 7afab1d commit 9cdf52d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
4 changes: 2 additions & 2 deletions SessionMapSwitcherWPF/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.4.0.0")]
[assembly: AssemblyFileVersion("2.4.0.0")]
[assembly: AssemblyVersion("2.4.1.0")]
[assembly: AssemblyFileVersion("2.4.1.0")]
29 changes: 28 additions & 1 deletion SessionMapSwitcherWPF/UI/AssetStoreUserControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,34 @@
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Grid.Row="1"
RenderOptions.BitmapScalingMode="HighQuality"/>
RenderOptions.BitmapScalingMode="HighQuality">
<Image.Style>
<Style TargetType="Image">
<Setter Property="Visibility" Value="Visible"/>
<Style.Triggers>
<DataTrigger Binding="{Binding IsLoadingImage, FallbackValue='False'}" Value="True">
<Setter Property="Visibility" Value="Hidden"/>
</DataTrigger>
</Style.Triggers>
</Style>
</Image.Style>
</Image>

<TextBlock Text="Loading Preview Image ..."
Grid.Row="1"
HorizontalAlignment="Center"
VerticalAlignment="Center">
<TextBlock.Style>
<Style TargetType="TextBlock">
<Setter Property="Visibility" Value="Hidden"/>
<Style.Triggers>
<DataTrigger Binding="{Binding IsLoadingImage, FallbackValue='True'}" Value="True">
<Setter Property="Visibility" Value="Visible"/>
</DataTrigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>

<WrapPanel Grid.Row="2"
HorizontalAlignment="Right"
Expand Down

0 comments on commit 9cdf52d

Please sign in to comment.