Progress dialog last line somtimes obscured by scroll bar
From: Simon Large <simon_at_skirridsystems.co.uk>
Date: 2006-02-13 23:56:59 CET
Hi Stefan,
I know I have mentioned this before, but I think I may have found the
At the end of an update, if the resizing in the first 30 rows causes a
Looking in SVNProgressDlg.cpp I see at line 972:
m_ProgList.EnsureVisible(m_ProgList.GetItemCount(), FALSE);
I think that should be:
m_ProgList.EnsureVisible(m_ProgList.GetItemCount() - 1, FALSE);
assuming the list is zero-based.
or possibly more robustly:
int nCount = m_ProgList.GetItemCount();
which looks spookily like the example in MSDN.
Simon
--
___
oo // \\ "De Chelonian Mobile"
(_,\/ \_/ \ TortoiseSVN
\ \_/_\_/> The coolest Interface to (Sub)Version Control
/_/ \_\ http://tortoisesvn.tigris.org
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: dev-help@tortoisesvn.tigris.org
Received on Mon Feb 13 23:56:08 2006
|
This is an archived mail posted to the TortoiseSVN Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.