Update ModPatchDialog.java

Fixed ModPatchDialog constructor ignoring continueOnSuccess argument
This commit is contained in:
Tomasz Bachmiński 2018-03-08 00:20:51 +01:00 committed by GitHub
parent 4bb3a3ddb9
commit dcec887f17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ public class ModPatchDialog extends ProgressDialog implements ModPatchObserver {
public ModPatchDialog( Frame owner, boolean continueOnSuccess ) {
super( owner, true );
super( owner, continueOnSuccess );
this.setTitle( "Patching..." );
this.setSize( 400, 160 );