2014-05-20 19:49 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* src/debug/dbgbrwsr.prg
    ! update current row position after resizing
      It should fix 2-nd problem reported by Rolf.
This commit is contained in:
Przemysław Czerpak
2014-05-20 19:49:15 +02:00
parent fde8db1e35
commit d00d7e70db
2 changed files with 9 additions and 0 deletions

View File

@@ -125,6 +125,10 @@ METHOD New( nTop, nLeft, nBottom, nRight, oParentWindow ) CLASS HBDbBrowser
METHOD Configure()
::rowCount := ::nBottom - ::nTop + 1
IF ::rowPos > ::rowCount
::nFirstVisible -= ::rowPos - ::rowCount
::rowPos := ::rowCount
ENDIF
AFill( ASize( ::aRowState, ::rowCount ), .F. )
::lConfigured := .T.