Shift Clicking Behavior should only happen when holding shift.
This commit is contained in:
parent
4a77b401d9
commit
db52d849e2
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ public abstract class AEBaseGui extends GuiContainer
|
|||
return;
|
||||
}
|
||||
|
||||
if ( disableShiftClick == false )
|
||||
if ( disableShiftClick == false && isShiftKeyDown() )
|
||||
{
|
||||
disableShiftClick = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue