Skip to content

Commit

Permalink
Fixed bug with large numbers of rulesets
Browse files Browse the repository at this point in the history
  • Loading branch information
Mode8fx committed Oct 6, 2021
1 parent 5563311 commit d76e631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions srm.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def __init__(self, top=None):
self.RadioButton_UseSettings.configure(command=self.prepareSettingsAndSeed)
self.RadioButton_UseSeed.configure(command=self.prepareSettingsAndSeed)
self.Button_CreateRom.configure(command=self.attemptRandomize)
for i in range(min(len(Optional_Rulesets), 13)):
for i in range(len(Optional_Rulesets)):
self.CheckButtons[i].configure(command=self.prepareSettingsFromDependencies)
self.prepareSettingsFromDependencies()

Expand Down Expand Up @@ -829,7 +829,7 @@ def showAboutPopup(self):
showinfo("About", About_Page_Text)

def showSRMPopup(self):
showinfo("Simple Randomizer Maker v1.26a", "This was made using\nMips96's Simple Randomizer Maker.\n\nhttps://github.com/Mips96/SimpleRandomizerMaker")
showinfo("Simple Randomizer Maker v1.26b", "This was made using\nMips96's Simple Randomizer Maker.\n\nhttps://github.com/Mips96/SimpleRandomizerMaker")

# ======================================================
# Support code for Balloon Help (also called tooltips).
Expand Down

0 comments on commit d76e631

Please sign in to comment.