Fix (?) button opening the link twice (#2664)

This commit is contained in:
barontek 2024-09-10 04:15:13 +03:00 committed by GitHub
parent ad37371492
commit 380e1e73a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -304,13 +304,6 @@ function Invoke-WPFUIElements {
$textBlock.ToolTip = $entryInfo.Link
$textBlock.Style = $HoverTextBlockStyle
# Add event handler for click to open link
$handler = [System.Windows.Input.MouseButtonEventHandler]{
param($sender, $e)
Start-Process $sender.ToolTip.ToString()
}
$textBlock.AddHandler([Windows.Controls.TextBlock]::MouseLeftButtonUpEvent, $handler)
$horizontalStackPanel.Children.Add($textBlock) | Out-Null
$sync[$textBlock.Name] = $textBlock