Skip to content

Commit

Permalink
Fixed alignment issue in tooltip style
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Peyronnet committed May 19, 2024
1 parent 98f10eb commit 97fb27f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion InternetTest/InternetTest/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -1667,6 +1667,7 @@
<Setter Property="FontWeight" Value="Normal" />
<Setter Property="Background" Value="{DynamicResource Background1}" />
<Setter Property="Foreground" Value="{DynamicResource Foreground1}" />
<Setter Property="FontFamily" Value="Segoe UI" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
Expand All @@ -1689,7 +1690,8 @@
<ContentPresenter
Margin="4"
HorizontalAlignment="Left"
VerticalAlignment="Top" />
VerticalAlignment="Center"
TextBlock.FontSize="12" />
</Border>
<ControlTemplate.Triggers>
<Trigger Property="HasDropShadow" Value="true">
Expand Down

0 comments on commit 97fb27f

Please sign in to comment.