Merge pull request #2100 from brendandahl/zoom-out-mac

Fix zoom out keyboard shortcut for mac.
This commit is contained in:
Julian Viereck 2012-09-13 07:47:51 -07:00
commit d108b20730

View File

@ -2295,6 +2295,7 @@ window.addEventListener('keydown', function keydown(evt) {
PDFView.zoomIn();
handled = true;
break;
case 173: // FF/Mac '-'
case 109: // FF '-'
case 189: // Chrome '-'
PDFView.zoomOut();