From 6a0a795f32136bf30cfa24ce30065981e79461f3 Mon Sep 17 00:00:00 2001 From: Corey Frang Date: Tue, 30 Jul 2013 21:50:02 -0400 Subject: [PATCH] Also allow meta click on nickname for player tracker to support os x --- plugins/player-tracker.user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/player-tracker.user.js b/plugins/player-tracker.user.js index 977854c8..f801f6d8 100644 --- a/plugins/player-tracker.user.js +++ b/plugins/player-tracker.user.js @@ -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; }