Merge pull request #11412 from osmandapp/KeyboardZoomPlus
add "equals" key code to increase map zoom
This commit is contained in:
commit
1de54d48a6
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ public class MapActivityKeyListener implements KeyEvent.Callback {
|
|||
if (keyCode == KeyEvent.KEYCODE_MINUS) {
|
||||
mapActivity.changeZoom(-1);
|
||||
return true;
|
||||
} else if (keyCode == KeyEvent.KEYCODE_PLUS) {
|
||||
} else if (keyCode == KeyEvent.KEYCODE_PLUS || keyCode == KeyEvent.KEYCODE_EQUALS) {
|
||||
mapActivity.changeZoom(1);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue