Skip to content

Commit 43660d8

Browse files
committed
1.8.6
[Bug fixes] - Open Logs causes AutoHDR to crash
1 parent f22f51b commit 43660d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Source/AutoHDR/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
5353
// indem Sie "*" wie unten gezeigt eingeben:
5454
// [assembly: AssemblyVersion("1.0.*")]
55-
[assembly: AssemblyVersion("1.8.5.0")]
56-
[assembly: AssemblyFileVersion("1.8.5.0")]
55+
[assembly: AssemblyVersion("1.8.6.0")]
56+
[assembly: AssemblyFileVersion("1.8.6.0")]

Source/AutoHDR/Views/AutoHDRLogsView.xaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@
4848
<RowDefinition Height="Auto"/>
4949

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

5656

5757

0 commit comments

Comments
 (0)