Fix merge error

This commit is contained in:
embeddedt 2023-08-18 15:36:50 -04:00
parent 4dcb94e6a5
commit 2a1685a2cb
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -21,9 +21,6 @@ public class ModernFixConfigScreen extends Screen {
@Override
protected void init() {
this.optionList = new OptionList(this, this.minecraft);
this.doneButton = new Button(this.width / 2 - 100, this.height - 29, 200, 20, CommonComponents.GUI_DONE, (arg) -> {
this.onClose();
});
this.addWidget(this.optionList);
this.wikiButton = new Button(this.width / 2 - 155, this.height - 29, 150, 20, new TranslatableComponent("modernfix.config.wiki"), (arg) -> {
Util.getPlatform().openUri("https://github.com/embeddedt/ModernFix/wiki/Summary-of-Patches");