Skip to content

Commit ff41d37

Browse files
author
MatthewBCooke
committed
Removed auto software selection button
1 parent 2ee61ad commit ff41d37

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

SearchStrategyAnalysis/Pathfinder.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,8 @@ def buildGUI(self, root): # Called in the __init__ to build the GUI window
318318
# ******* Software Type *******
319319
self.softwareBar = Frame(root) # add a toolbar to the frame
320320
self.softwareBar.config(bg="white")
321-
self.autoRadio = Radiobutton(self.softwareBar, text="Auto", variable=softwareStringVar,
322-
value="auto", indicatoron=1, width=15, bg="white")
323-
self.autoRadio.grid(row=rowCount, column=0, padx=5, sticky='NW') # add the radiobuttons for selection
321+
#self.autoRadio = Radiobutton(self.softwareBar, text="Auto", variable=softwareStringVar, value="auto", indicatoron=1, width=15, bg="white")
322+
#self.autoRadio.grid(row=rowCount, column=0, padx=5, sticky='NW') # add the radiobuttons for selection
324323

325324
self.ethovisionRadio = Radiobutton(self.softwareBar, text="Ethovision", variable=softwareStringVar,
326325
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
343342
self.defineRadio.grid(row=rowCount, column=5, padx=5, sticky='NW')
344343
self.softwareBar.pack(side=TOP, fill=X, pady=5)
345344

346-
self.autoRadio.bind("<Enter>", partial(self.on_enter, "Click for automatic detection of data-type"))
347-
self.autoRadio.bind("<Leave>", self.on_leave)
345+
#self.autoRadio.bind("<Enter>", partial(self.on_enter, "Click for automatic detection of data-type"))
346+
#self.autoRadio.bind("<Leave>", self.on_leave)
348347
self.ethovisionRadio.bind("<Enter>", partial(self.on_enter, "Click if you used Ethovision to generate your data"))
349348
self.ethovisionRadio.bind("<Leave>", self.on_leave)
350349
self.anymazeRadio.bind("<Enter>", partial(self.on_enter, "Click if you used Anymaze to generate your data"))

0 commit comments

Comments
 (0)