mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 20:54:59 +00:00
20 lines
488 B
C#
20 lines
488 B
C#
using System;
|
|
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public class EnhancedSelectableTextBlock : SelectableTextBlock
|
|
{
|
|
protected override Type StyleKeyOverride => typeof(SelectableTextBlock);
|
|
|
|
protected override void OnPropertyChanged(AvaloniaPropertyChangedEventArgs change)
|
|
{
|
|
base.OnPropertyChanged(change);
|
|
|
|
if (change.Property == TextProperty)
|
|
UpdateLayout();
|
|
}
|
|
}
|
|
}
|