*** empty log message ***

svn path=/trunk/boinc/; revision=5303
This commit is contained in:
Rom Walton 2005-02-03 22:33:27 +00:00
parent 1524b2baa5
commit 30b07d1140
2 changed files with 7 additions and 4 deletions

View File

@ -23931,9 +23931,12 @@ Rom 3 Feb 2005
- Bug Fix: In the transfers tab, replace upload with transfer.
- Bug Fix: In the work tab, replace "Quick Tips" with just "Tips"
to be consistent with the rest of the tabs.
- Bug Fix: Additional check to see if any new messages have been added
before changing the visible messages in the message tab.
client/win/
win_screensaver.cpp, .h
clientgui/
ViewWork.cpp
ViewTransfers.cpp
ViewMessages.cpp

View File

@ -182,15 +182,15 @@ void CViewMessages::OnListRender ( wxTimerEvent& event )
else
{
if ( m_iPreviousDocCount != iDocCount )
{
m_pListPane->SetItemCount( iDocCount );
m_iPreviousDocCount = iDocCount;
}
}
if ( _EnsureLastItemVisible() && iDocCount )
if ( (iDocCount) && (_EnsureLastItemVisible()) && (m_iPreviousDocCount != iDocCount) )
m_pListPane->EnsureVisible( iDocCount - 1 );
if ( m_iPreviousDocCount != iDocCount )
m_iPreviousDocCount = iDocCount;
m_bProcessingListRenderEvent = false;
}