diff options
| author | Richard Linden <none@none> | 2011-12-02 11:02:26 -0800 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2011-12-02 11:02:26 -0800 | 
| commit | 9cb157dde0ede0e494ec3b37a33e650889ba382c (patch) | |
| tree | e79c5be068fa2ff50544a21b06727246576c5265 /indra | |
| parent | 587a1a425a8e57139a863d5c4a37de108afa6d40 (diff) | |
EXP-1654 FIX fast timers does not show entire frame when Full bar = Max
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llfasttimerview.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp index 065dc5f4be..233038daba 100644 --- a/indra/newview/llfasttimerview.cpp +++ b/indra/newview/llfasttimerview.cpp @@ -105,6 +105,7 @@ void LLFastTimerView::onPause()  	if (!LLFastTimer::sPauseHistory)  	{  		mScrollIndex = 0; +		LLFastTimer::sResetHistory = true;  		getChild<LLButton>("pause_btn")->setLabel(getString("pause"));  	}  	else @@ -591,6 +592,7 @@ void LLFastTimerView::draw()  			{  				mAvgCountTotal = ticks;  				mMaxCountTotal = ticks; +				LLFastTimer::sResetHistory = false;  			}  		} | 
