From 9f64d85fe46b8ebb6d71d2ecd34511cd73b99a73 Mon Sep 17 00:00:00 2001 From: Manuel Simon Hirsig Date: Sat, 27 Feb 2016 10:31:22 +0100 Subject: [PATCH] ignoring modified clicks for the right click shortcut --- core.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core.lua b/core.lua index e6b9b06..4d77ebc 100644 --- a/core.lua +++ b/core.lua @@ -1,5 +1,5 @@ Aux = { - version = '2.5.1', + version = '2.5.2', blizzard_ui_shown = false, orig = {}, } @@ -286,6 +286,9 @@ function Aux.SetItemRef(itemstring, text, button) end function Aux.UseContainerItem(bag, slot) + if IsShiftKeyDown() or IsControlKeyDown() or IsAltKeyDown() then + return Aux.orig.UseContainerItem(bag, slot) + end if AuxSearchFrame:IsVisible() then local item_info = Aux.info.container_item(bag, slot)