From 371ef142669a31c43549aa60b7fbdd634c924283 Mon Sep 17 00:00:00 2001 From: p3lim Date: Mon, 3 Jan 2011 17:05:53 +0100 Subject: [PATCH] Run blizzard's code if our stop-key is used --- Monomyth.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Monomyth.lua b/Monomyth.lua index 119fd9c..ca9940e 100644 --- a/Monomyth.lua +++ b/Monomyth.lua @@ -6,7 +6,11 @@ local COMPLETE = [=[Interface\GossipFrame\ActiveQuestIcon]=] function addon:Register(event, func) self:RegisterEvent(event) self[event] = function(...) - if(not IsShiftKeyDown()) then + if(IsShiftKeyDown()) then + if(event == 'QUEST_DETAIL') then + QuestFrame_OnEvent(nil, event) + end + else func(...) end end -- 1.7.9.5