Skip to content

Commit 0c694c0

Browse files
Removed vestigial button
1 parent b9617f8 commit 0c694c0

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

python/browser.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -906,9 +906,6 @@ def __init__(self, parent, manifold):
906906
text='cyclic covers only',
907907
)
908908
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)
912909
degree_frame.grid(row=1, column=0, pady=2, padx=6, sticky=Tk_.EW)
913910
self.covers = covers = ttk.Treeview(
914911
top_frame,
@@ -951,13 +948,11 @@ def __init__(self, parent, manifold):
951948
def clear_list(self, *args):
952949
self.covers.delete(*self.covers.get_children())
953950
self.browse.config(default='normal')
954-
self.action.config(default='active')
955951
self.state = 'not ready'
956952

957953
def show_covers(self, *args):
958954
self.state = 'ready'
959955
self.browse.config(default='active')
960-
self.action.config(default='normal')
961956
self.covers.delete(*self.covers.get_children())
962957
degree = int(self.degree_var.get())
963958
if self.cyclic_var.get():

0 commit comments

Comments
 (0)