Skip to content

Commit

Permalink
[Blindscan] fix updating config list
Browse files Browse the repository at this point in the history
  • Loading branch information
Huevos committed Aug 15, 2024
1 parent 5217190 commit e57aef1
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions Blindscan/src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def __init__(self, session):
self.bsTimer = eTimer()
self.bsTimer.callback.append(self.asyncBlindScan)

ConfigListScreen.__init__(self, self.list, session=session, on_change=self.changedEntry)
ConfigListScreen.__init__(self, self.list, session=session, on_change=self.newConfig)
self["footnote"] = Label("")

self["actions"] = ActionMap(["SetupActions"],
Expand Down Expand Up @@ -638,14 +638,6 @@ def newConfig(self):
self.createSetup()
self.setBlueText()

def keyLeft(self):
ConfigListScreen.keyLeft(self)
self.newConfig()

def keyRight(self):
ConfigListScreen.keyRight(self)
self.newConfig()

def saveConfig(self):
for x in self["config"].list:
x[1].save()
Expand Down

0 comments on commit e57aef1

Please sign in to comment.