Skip to content

Commit

Permalink
1.8.6
Browse files Browse the repository at this point in the history
[Bug fixes]
- Open Logs causes AutoHDR to crash
  • Loading branch information
Codectory committed Dec 25, 2021
1 parent f22f51b commit 43660d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Source/AutoHDR/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.8.5.0")]
[assembly: AssemblyFileVersion("1.8.5.0")]
[assembly: AssemblyVersion("1.8.6.0")]
[assembly: AssemblyFileVersion("1.8.6.0")]
4 changes: 2 additions & 2 deletions Source/AutoHDR/Views/AutoHDRLogsView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
<RowDefinition Height="Auto"/>

</Grid.RowDefinitions>
<Image Grid.Row="0" Grid.ColumnSpan="3" Source="{x:Static pres:ProjectLocales.Logo}" />
<Image Grid.Row="0" Grid.ColumnSpan="3" Source="{Binding Converter={StaticResource BitmapToBitmapImageConverter}, Source={x:Static pres:ProjectLocales.Logo}}" />
</Grid>
<Border Style="{StaticResource DefaultBorder}" Grid.Row="2" Margin="5" />
<ListBox Grid.Row="2" ItemsSource="{Binding Entries}" ItemTemplate="{StaticResource LogEntryTemplate }" Margin="15" FontSize="15" BorderBrush="{x:Null}" BorderThickness="0"/>
<ItemsControl Grid.Row="2" ItemsSource="{Binding Entries}" ItemTemplate="{StaticResource LogEntryTemplate }" Margin="15" FontSize="15" BorderBrush="{x:Null}" BorderThickness="0" />



Expand Down

0 comments on commit 43660d8

Please sign in to comment.