Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Fix missing filename
Browse files Browse the repository at this point in the history
  • Loading branch information
misandrie committed May 26, 2024
1 parent c25049d commit 3f48da1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SS14.Launcher/Views/MainWindowTabs/PatchesTabView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<ToolTip.Tip>
<StackPanel>
<TextBlock Text="{Binding Desc}" />
<TextBlock Text="{Binding Asm.Location, Converter={StaticResource PathToFileNameConverter}}" Foreground="Gray"/>
<TextBlock Text="{Binding Asmpath, Converter={StaticResource PathToFileNameConverter}}" Foreground="Gray"/>
<TextBlock Text="{Binding Preload, Converter={StaticResource BooleanToPreloadConverter}}" IsVisible="{Binding Preload}"/>
</StackPanel>
</ToolTip.Tip>
Expand Down Expand Up @@ -76,7 +76,7 @@
<ToolTip.Tip>
<StackPanel>
<TextBlock Text="{Binding Desc}" />
<TextBlock Text="{Binding Asm.Location, Converter={StaticResource PathToFileNameConverter}}" Foreground="Gray"/>
<TextBlock Text="{Binding Asmpath, Converter={StaticResource PathToFileNameConverter}}" Foreground="Gray"/>
</StackPanel>
</ToolTip.Tip>
</ToggleButton>
Expand Down

0 comments on commit 3f48da1

Please sign in to comment.