1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Checking canvas size against .99 to reduce chance of infinite loop.

This commit is contained in:
Joe R 2022-10-02 15:41:03 -04:00
parent 18c3549f66
commit 147cefba91

View file

@ -625,7 +625,9 @@ class MfxScrolledCanvas:
if self.canvas.busy:
return
sb = self.hbar
if float(first) <= 0 and float(last) >= 1:
# TODO - Setting this to .99 takes the scrollbar size into account.
# But there is probably a better way to do it.
if float(first) <= 0 and float(last) >= .99:
sb.grid_remove()
self.hbar_show = False
else:
@ -638,7 +640,8 @@ class MfxScrolledCanvas:
if self.canvas.busy:
return
sb = self.vbar
if float(first) <= 0 and float(last) >= 1:
# TODO - See _setHbar above.
if float(first) <= 0 and float(last) >= .99:
sb.grid_remove()
self.vbar_show = False
else: