From db78cca216e85a571ab0d0898a78ddc90956257a Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Tue, 16 Feb 2021 20:17:37 -0500 Subject: [PATCH] If we add the multiline edit above playersavelocation then it crashes, fix? --- Adventure Game/adventure_game/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Adventure Game/adventure_game/main.py b/Adventure Game/adventure_game/main.py index 940dd35..0005530 100644 --- a/Adventure Game/adventure_game/main.py +++ b/Adventure Game/adventure_game/main.py @@ -19,8 +19,8 @@ class MainMenu(npyscreen.Form): self.parentApp.setNextForm('GAME') def create(self): - self.add(npyscreen.MultiLineEdit, value='Test', editable=False) self.playerSaveLocation = self.add(npyscreen.TitleFilenameCombo, name="Filename:") + self.add(npyscreen.MultiLineEdit, value='Test', editable=False) class AlphaWarning(npyscreen.Popup):