Also allow meta click on nickname for player tracker to support os x

This commit is contained in:
Corey Frang 2013-07-30 21:50:02 -04:00
parent 44c066c189
commit 6a0a795f32

View File

@ -382,7 +382,7 @@ window.plugin.playerTracker.centerMapOnUser = function(nick) {
}
window.plugin.playerTracker.onNicknameClicked = function(info) {
if (info.event.ctrlKey) {
if (info.event.ctrlKey || info.event.metaKey) {
plugin.playerTracker.centerMapOnUser(info.nickname);
return false;
}