The problem I am having is currently I have no way of bringing up the default blizzard context menu BECAUSE i have something bound to (unmodified) right click. I also have something bound to shift right click and ctrl right click (and similarly with left click)
Before I installed pitbull I would Alt right click to get the default blizzard context menu (for things like changing lead in raid, reporting afkers in bgs, setting raid icons) that sort of thing.
I guess most people dont override the unmodified left and right click so they can still target with a left click and bring up context on right.
I'll try out the mentioned change and see if it helps, thanks.
I would like to have the option to turn this off. I use Clique to perform a lot of casting and have left and right click (with nomodifier, shift, ctrl) bound to spells and I am used to doing alt left click to target and alt right click to bring up the standard blizzard context menu.
I am going to try it when I get home, but I believe the following code might be what might need to change:
local function configFrame_OnMouseDown(this, button)
local unit = this:GetUnit()
if not UnitExists(unit) and button == "RightButton" then
this:custom_menu(unit)
end
end
to something along the lines of
local function configFrame_OnMouseDown(this, button)
local unit = this:GetUnit()
if self.db.profile.settings.quickConfig and not UnitExists(unit) and button == "RightButton" then
this:custom_menu(unit)
end
end
This may be the wrong spot, I was just looking in the code, I haven't tried it out yet.
Thoughts?
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
Before I installed pitbull I would Alt right click to get the default blizzard context menu (for things like changing lead in raid, reporting afkers in bgs, setting raid icons) that sort of thing.
I guess most people dont override the unmodified left and right click so they can still target with a left click and bring up context on right.
I'll try out the mentioned change and see if it helps, thanks.
I am going to try it when I get home, but I believe the following code might be what might need to change:
to something along the lines of
This may be the wrong spot, I was just looking in the code, I haven't tried it out yet.
Thoughts?