fix thumbnail-zoom hotkeys

This commit is contained in:
ed 2021-09-01 22:26:18 +02:00
parent ed48c2d0ed
commit 1b14eb7959

View file

@ -2700,10 +2700,10 @@ document.onkeydown = function (e) {
return ebi('gridsel').click();
if (k == 'KeyA')
return QSA('#ghead>a[z]')[0].click();
return QSA('#ghead a[z]')[0].click();
if (k == 'KeyD')
return QSA('#ghead>a[z]')[1].click();
return QSA('#ghead a[z]')[1].click();
}
};