diff options
author | fvogel <fvogel@noemail.net> | 2016-01-18 09:47:10 (GMT) |
---|---|---|
committer | fvogel <fvogel@noemail.net> | 2016-01-18 09:47:10 (GMT) |
commit | 06a4b22707ddd9ac5ae48c4aed6beda6a3fde51c (patch) | |
tree | 3c9567778d8ebae4c520f8110f9ad18fbf6b3dc1 /generic | |
parent | eb58563ca259499c922b91d9991a247c7aadc34d (diff) | |
download | tk-06a4b22707ddd9ac5ae48c4aed6beda6a3fde51c.zip tk-06a4b22707ddd9ac5ae48c4aed6beda6a3fde51c.tar.gz tk-06a4b22707ddd9ac5ae48c4aed6beda6a3fde51c.tar.bz2 |
Fixed bug with the listbox justify patch: with large borders, when moving the horizontal scrollbar fully to the right the edge of the border could not be seen, one needed to push once on the right arrow of the scrollbar to see it.
FossilOrigin-Name: 5f396dacdc1750d5dcfd805901d2491fb98fe711
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkListbox.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/generic/tkListbox.c b/generic/tkListbox.c index e29c637..ee6941e 100644 --- a/generic/tkListbox.c +++ b/generic/tkListbox.c @@ -3657,7 +3657,6 @@ static int GetMaxOffset( maxOffset = 0; } - maxOffset -= maxOffset % listPtr->xScrollUnit; return maxOffset; } |