@@ -318,9 +318,8 @@ def buildGUI(self, root): # Called in the __init__ to build the GUI window
318
318
# ******* Software Type *******
319
319
self .softwareBar = Frame (root ) # add a toolbar to the frame
320
320
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
324
323
325
324
self .ethovisionRadio = Radiobutton (self .softwareBar , text = "Ethovision" , variable = softwareStringVar ,
326
325
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
343
342
self .defineRadio .grid (row = rowCount , column = 5 , padx = 5 , sticky = 'NW' )
344
343
self .softwareBar .pack (side = TOP , fill = X , pady = 5 )
345
344
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)
348
347
self .ethovisionRadio .bind ("<Enter>" , partial (self .on_enter , "Click if you used Ethovision to generate your data" ))
349
348
self .ethovisionRadio .bind ("<Leave>" , self .on_leave )
350
349
self .anymazeRadio .bind ("<Enter>" , partial (self .on_enter , "Click if you used Anymaze to generate your data" ))
0 commit comments