75 - Alt-RightClick on item in bag does not work
What steps will reproduce the problem?
1. Open Bag
2. Alt-right click on item
3. Nothing happens
What is the expected output? What do you see instead?
Expected SKG should open with loot event, instead, nothing
What version of the product are you using?
3.2.1-beta
Do you have an error log of what happened?
No, but debug log just says:
"in my hook for containerclick"
Please provide any additional information below.
I looked at the code, and I believe the following line is in error in SKG_Hooks.lua
SKG:SecureHook( "ContainerFrameItemButton_OnModifiedClick", function ( button )
should be
SKG:SecureHook( "ContainerFrameItemButton_OnModifiedClick", function ( _, button )
Since the first param of that hook is 'self', not 'button'. I have made this change locally, and it seems to work fine now.
- 2 comments
- 2 comments
- #2
Zanthor Mon, 17 Aug 2009 03:27:15Tested this on mine and it's all fixed!
- #1
Zhinjio Sat, 13 Jun 2009 09:10:11Thanks, I'll look into this.