Merge pull request #17 from bartimaeusnek/rv3-1.7.10
Fix https://github.com/GTNewHorizons/NewHorizons/issues/2435
This commit is contained in:
commit
a3de16e222
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ public abstract class AEBaseGui extends GuiContainer
|
|||
|
||||
if( slot instanceof SlotFake )
|
||||
{
|
||||
final InventoryAction action = mouseButton == 1 ? InventoryAction.SPLIT_OR_PLACE_SINGLE : InventoryAction.PICKUP_OR_SET_DOWN;
|
||||
final InventoryAction action = ctrlDown == 1 ? InventoryAction.SPLIT_OR_PLACE_SINGLE : InventoryAction.PICKUP_OR_SET_DOWN;
|
||||
|
||||
if( this.drag_click.size() > 1 )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue