Merge pull request #459 from gnarf/meta-key

Also allow meta click on nickname for player tracker to support os x
This commit is contained in:
Jon Atkins 2013-08-05 06:41:05 -07:00
commit b0ad122800

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;
}