mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5303
This commit is contained in:
parent
1524b2baa5
commit
30b07d1140
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue