fullscreen: alt. scale mode only if image < window

This commit is contained in:
miruka 2020-07-19 20:29:25 -04:00
parent 06c2a24c9e
commit 066102e64d

View File

@ -41,16 +41,18 @@ HPopup {
function showFullScreen() {
if (activedFullScreen) return
window.showFullScreen()
popup.activedFullScreen = true
popup.alternateScaling = true
if (! imageLargerThanWindow) popup.alternateScaling = true
}
function exitFullScreen() {
if (! activedFullScreen) return
window.showNormal()
popup.activedFullScreen = false
popup.alternateScaling = false
if (! imageLargerThanWindow) popup.alternateScaling = false
}
function toggleFulLScreen() {