Merge pull request #371 from kamilprzyb2/listbox-fix

Fix nTop not being assigned properly in ListBox:hitTest()
This commit is contained in:
FiveTech Software
2025-01-08 15:24:48 +01:00
committed by GitHub
2 changed files with 5 additions and 2 deletions

View File

@@ -7,6 +7,10 @@
Entries may not always be in chronological/commit order.
See license at the end of file. */
2025-01-08 13:14 UTC+0100 Kamil Przybylski (kprzybylski quay.pl)
* src/rtl/listbox.prg
! fixed nTop variable not being assigned properly in ListBox:hitTest()
2025-01-07 22:49 UTC+0100 Aleksander Czajczynski (hb fki.pl)
* contrib/hbcurl/hbcurl.ch
* updated HB_CURLOPT_SSL_OPTIONS: HB_CURLSSLOPT_*

View File

@@ -397,7 +397,7 @@ METHOD getText( nPos ) CLASS ListBox
METHOD hitTest( nMRow, nMCol ) CLASS ListBox
LOCAL nRet
LOCAL nTop
LOCAL nTop := ::nTop
LOCAL nHit := 0
/* Check hit on the scrollbar */
@@ -411,7 +411,6 @@ METHOD hitTest( nMRow, nMCol ) CLASS ListBox
IF ! ::lIsOpen .OR. Empty( ::cHotBox + ::cColdBox )
nRet := 0
ELSE
nTop := ::nTop
IF ::lDropDown
nTop++
ENDIF