Skip to content

Commit

Permalink
Fix removal of old sigils
Browse files Browse the repository at this point in the history
  • Loading branch information
josdemmers committed Oct 22, 2023
1 parent 18b4715 commit 39bf67b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion D4Companion/Views/AffixView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,8 @@

<TextBlock Grid.Column="1" Margin="2 2 2 2" TextTrimming="CharacterEllipsis" Foreground="LightGray" FontSize="15"
Text="{Binding Path=Id, Converter={StaticResource SigilIdToNameConverter}}"
ToolTip="{Binding Path=Id, Converter={StaticResource SigilIdToDescriptionConverter}}" >
ToolTip="{Binding Path=Id, Converter={StaticResource SigilIdToDescriptionConverter}}"
MinWidth="150">
<TextBlock.InputBindings>
<MouseBinding Command="{Binding Path=DataContext.RemoveSigilCommand, RelativeSource={RelativeSource AncestorType={x:Type local:AffixView}}}" CommandParameter="{Binding}" MouseAction="LeftDoubleClick" />
</TextBlock.InputBindings>
Expand Down

0 comments on commit 39bf67b

Please sign in to comment.