@@ -906,9 +906,6 @@ def __init__(self, parent, manifold):
906
906
text = 'cyclic covers only' ,
907
907
)
908
908
cyclic_or_not .grid (row = 0 , column = 2 , padx = 6 , sticky = Tk_ .W )
909
- self .action = action = ttk .Button (degree_frame , text = 'Recompute' ,
910
- command = self .show_covers )
911
- action .grid (row = 0 , column = 3 , padx = 8 , sticky = Tk_ .W )
912
909
degree_frame .grid (row = 1 , column = 0 , pady = 2 , padx = 6 , sticky = Tk_ .EW )
913
910
self .covers = covers = ttk .Treeview (
914
911
top_frame ,
@@ -951,13 +948,11 @@ def __init__(self, parent, manifold):
951
948
def clear_list (self , * args ):
952
949
self .covers .delete (* self .covers .get_children ())
953
950
self .browse .config (default = 'normal' )
954
- self .action .config (default = 'active' )
955
951
self .state = 'not ready'
956
952
957
953
def show_covers (self , * args ):
958
954
self .state = 'ready'
959
955
self .browse .config (default = 'active' )
960
- self .action .config (default = 'normal' )
961
956
self .covers .delete (* self .covers .get_children ())
962
957
degree = int (self .degree_var .get ())
963
958
if self .cyclic_var .get ():
0 commit comments