diff --git a/EbayListingTool/Views/PhotoAnalysisView.xaml.cs b/EbayListingTool/Views/PhotoAnalysisView.xaml.cs index ee947a4..5c26744 100644 --- a/EbayListingTool/Views/PhotoAnalysisView.xaml.cs +++ b/EbayListingTool/Views/PhotoAnalysisView.xaml.cs @@ -241,9 +241,10 @@ public partial class PhotoAnalysisView : UserControl var (newTitle, newDesc, newPrice, newReasoning) = await _aiService.RefineWithCorrectionsAsync(title, description, price, corrections); - TitleBox.Text = newTitle; - DescriptionBox.Text = newDesc; - PriceOverride.Value = (double)newPrice; + TitleBox.Text = newTitle; + DescriptionBox.Text = newDesc; + PriceOverride.Value = (double)newPrice; + PriceSuggestedText.Text = newPrice > 0 ? $"£{newPrice:F2}" : "—"; _lastResult.Title = newTitle; _lastResult.Description = newDesc;