fix(ui): a coin change repaints the Items tab's cost sentence too — the post-buy purse no longer reads stale
Some checks are pending
Headless portability / portable-headless (ubuntu-latest) (push) Waiting to run
Headless portability / portable-headless (windows-latest) (push) Waiting to run
Headless portability / linux-graphical (push) Waiting to run
Headless portability / linux-vulkan (push) Waiting to run

The money handler refreshed only the Buying/Selling tab summaries;
the Items tab's "(you have Np)" tail rebuilt only on selection
clicks. RefreshSelectionDisplay rides the same ObjectUpdated money
path now.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Erik 2026-08-08 17:54:15 +02:00
parent 4cfcc8b338
commit af1a1ef9e6

View file

@ -1959,6 +1959,11 @@ public sealed class VendorUiController : IRetainedPanelController, IItemListDrag
return; return;
UpdateBuyTransactionText(); UpdateBuyTransactionText();
UpdateSellTransactionText(); UpdateSellTransactionText();
// Post-buy gate finding (2026-08-08): the Items tab's cost sentence
// carries "(you have Np)" too — a coin change must repaint it, not
// only the Buying/Selling tab summaries, or the purse reads stale
// until the next selection click.
RefreshSelectionDisplay();
} }
/// <summary> /// <summary>