Merge pull request #16 from kartoFlane/patch-2

Fixed ModPatchDialog constructor ignoring continueOnSuccess argument
This commit is contained in:
Vhati 2018-03-08 17:23:42 -05:00 committed by GitHub
commit 85cad4ffbe
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 );