From ff41d379052bcd2c3b2cb6d906ca6d2cde61c694 Mon Sep 17 00:00:00 2001 From: MatthewBCooke Date: Fri, 5 Jun 2020 20:38:01 -0700 Subject: [PATCH] Removed auto software selection button --- SearchStrategyAnalysis/Pathfinder.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/SearchStrategyAnalysis/Pathfinder.py b/SearchStrategyAnalysis/Pathfinder.py index c82dbcb..5c5be16 100755 --- a/SearchStrategyAnalysis/Pathfinder.py +++ b/SearchStrategyAnalysis/Pathfinder.py @@ -318,9 +318,8 @@ def buildGUI(self, root): # Called in the __init__ to build the GUI window # ******* Software Type ******* self.softwareBar = Frame(root) # add a toolbar to the frame self.softwareBar.config(bg="white") - self.autoRadio = Radiobutton(self.softwareBar, text="Auto", variable=softwareStringVar, - value="auto", indicatoron=1, width=15, bg="white") - self.autoRadio.grid(row=rowCount, column=0, padx=5, sticky='NW') # add the radiobuttons for selection + #self.autoRadio = Radiobutton(self.softwareBar, text="Auto", variable=softwareStringVar, value="auto", indicatoron=1, width=15, bg="white") + #self.autoRadio.grid(row=rowCount, column=0, padx=5, sticky='NW') # add the radiobuttons for selection self.ethovisionRadio = Radiobutton(self.softwareBar, text="Ethovision", variable=softwareStringVar, value="ethovision", indicatoron=1, width=15, bg="white") @@ -343,8 +342,8 @@ def buildGUI(self, root): # Called in the __init__ to build the GUI window self.defineRadio.grid(row=rowCount, column=5, padx=5, sticky='NW') self.softwareBar.pack(side=TOP, fill=X, pady=5) - self.autoRadio.bind("", partial(self.on_enter, "Click for automatic detection of data-type")) - self.autoRadio.bind("", self.on_leave) + #self.autoRadio.bind("", partial(self.on_enter, "Click for automatic detection of data-type")) + #self.autoRadio.bind("", self.on_leave) self.ethovisionRadio.bind("", partial(self.on_enter, "Click if you used Ethovision to generate your data")) self.ethovisionRadio.bind("", self.on_leave) self.anymazeRadio.bind("", partial(self.on_enter, "Click if you used Anymaze to generate your data"))