diff --git a/source/Ox.UI/js/Calendar/Ox.Calendar.js b/source/Ox.UI/js/Calendar/Ox.Calendar.js index 990252ee..b23c5319 100644 --- a/source/Ox.UI/js/Calendar/Ox.Calendar.js +++ b/source/Ox.UI/js/Calendar/Ox.Calendar.js @@ -1178,7 +1178,11 @@ Ox.Calendar = function(options, self) { id = $target.data('id'); if ($target.is('.OxLine > .OxEvent')) { if (id == self.options.selected) { - panToSelected(); + if (data.metaKey) { + selectEvent(''); + } else { + panToSelected(); + } } else { selectEvent(id, $target); }