Fixes #2403: Force stack size to 1 for removing the stack size display in the crafting amount window.
This commit is contained in:
@@ -154,7 +154,7 @@ public class GuiCraftAmount extends AEBaseGui
|
||||
try
|
||||
{
|
||||
Long.parseLong( this.amountToCraft.getText() );
|
||||
this.next.enabled = this.amountToCraft.getText().length() > 0;
|
||||
this.next.enabled = !this.amountToCraft.getText().isEmpty();
|
||||
}
|
||||
catch( final NumberFormatException e )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user