damontecres / StashAppAndroidTV

Android TV App for Stash
GNU Affero General Public License v3.0
89 stars 4 forks source link

Fix navigation buttons not working on some images #217

Closed damontecres closed 7 months ago

damontecres commented 7 months ago

See #214

Fixes how determining if an image is zoomed in. The zoom value is a float and so may be a minuscule amount over exactly 1.0f (e.g. 1.0000001) and the previous comparison would count that as zoomed in.

Sine direct comparisons won't work well, the comparison is updated to essentially check if the image is <1% zoomed in or out from default. Since the zoom in/out controls do ~30%, this 1% margin is fine.

This is comp sci 101, doh! 🤦