Fix scrolling to bottom when prop is not text

This commit is contained in:
2026-01-03 22:11:58 +09:00
parent c298c143f5
commit 7fcfe6282e
+5 -1
View File
@@ -1,4 +1,5 @@
using Avalonia;
using System;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
@@ -13,8 +14,11 @@ namespace ReceiptPDFBuilder.Views
}
private void LogBlock_PropertyChanged(object? sender, AvaloniaPropertyChangedEventArgs e)
{
if (e.Property.ToString() == "Text")
{
LogScrollView.ScrollToEnd();
}
}
}
}