Skip to content

Commit

Permalink
Merge branch 'jk/hotfix-tooltip' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
punker76 committed Oct 20, 2022
2 parents 6e973cd + 898a2b6 commit b69f7d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
15 changes: 6 additions & 9 deletions NuGet.Config
Expand Up @@ -9,14 +9,11 @@
</packageRestore>
<packageSources>
<clear />
<add key="CI.XamlColorSchemeGenerator" value="https://ci.appveyor.com/nuget/xamlcolorschemegenerator" />
<!-- <add key="XamlColorSchemeGenerator" value="C:\DEV\OSS_Own\XamlColorSchemeGenerator\bin\Release" /> -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
<activePackageSource>
<clear />
<add key="CI.XamlColorSchemeGenerator" value="https://ci.appveyor.com/nuget/xamlcolorschemegenerator" />
<!-- <add key="XamlColorSchemeGenerator" value="C:\DEV\OSS_Own\XamlColorSchemeGenerator\bin\Release" /> -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</activePackageSource>
</configuration>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>
3 changes: 2 additions & 1 deletion src/ControlzEx/ToolTipAssist.cs
Expand Up @@ -136,7 +136,8 @@ private static void MoveToolTip(IInputElement? target, ToolTip? toolTip)
{
if (toolTip is null
|| target is null
|| toolTip.PlacementTarget is null)
|| toolTip.PlacementTarget is null
|| PresentationSource.FromVisual(toolTip.PlacementTarget) is null)
{
return;
}
Expand Down

0 comments on commit b69f7d5

Please sign in to comment.