# # patch "ChangeLog" # from [8d3cbb0457a6d0781d5e80827ea8c62916264a5f] # to [fa740c1f5f29bf783a60fb686e8cfee22fdf09dd] # # patch "ui.cc" # from [e42166c04687d0d23d1432cbd3861246352a3e9f] # to [8cd505ecc025c3cbf646fb3a9c9b53bef6dee266] # --- ChangeLog +++ ChangeLog @@ -1,3 +1,8 @@ +2005-06-16 Matt Johnston + + * ui.cc: increase the divisor as required so that we don't get spurious + screen updates when we're using the kilobyte/megabyte tickers + 2005-06-15 Matt Johnston * monotone.texi: clarify some netsync parts of the tutorial --- ui.cc +++ ui.cc @@ -120,6 +120,8 @@ div = 1024; suffix = "k"; } + // we reset the mod to the divider, to avoid spurious screen updates + i->second->mod = div; count = (F("%.1f%s") % (i->second->ticks / div) % suffix).str(); } else