mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
19 lines
520 B
C#
19 lines
520 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Input;
|
|
|
|
namespace SourceGit.Views {
|
|
public partial class FileHistories : Window {
|
|
public FileHistories() {
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void OnPressedSHA(object sender, PointerPressedEventArgs e) {
|
|
if (sender is TextBlock block) {
|
|
var histories = DataContext as ViewModels.FileHistories;
|
|
histories.NavigateToCommit(block.Text);
|
|
}
|
|
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
}
|