# HG changeset patch # User Gavin Andresen # Date 1314906279 14400 # Node ID 45ea18cec6f99966df433509411e00caaedd8ee8 # Parent 39a5e23e15038151b6662149c29876fd5c0a7215 Fixed regression I introduced: wallets with lots of transactions were unusable in GUI. diff --git a/src/ui.cpp b/src/ui.cpp --- a/src/ui.cpp +++ b/src/ui.cpp @@ -1032,7 +1032,6 @@ printf("MainFrameRepaint\n"); wxPaintEvent event; pframeMain->fRefresh = true; - pframeMain->fRefreshListCtrl = true; pframeMain->GetEventHandler()->AddPendingEvent(event); } } @@ -2173,7 +2172,10 @@ strError = pwalletMain->SendMoney(scriptPubKey, nValue, wtx, true); } if (strError == "") + { + pframeMain->RefreshListCtrl(); wxMessageBox(_("Payment sent "), _("Sending...")); + } else if (strError == "ABORTED") { if (fWasLocked)