Skip to content

Commit 5067f0d

Browse files
committed
Unlink unused buttons
1 parent be2aecb commit 5067f0d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

erdetect/views/gui.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,10 +421,10 @@ def txt_no_input_onkey(event):
421421
y_pos += 30 + 5
422422
config_btn_width = (window_width - 10 - 10 - 10) / 2
423423
tk.Button(win, text="Preprocessing", command=config_preprocessing_callback).place(x=10, y=y_pos, width=config_btn_width, height=28)
424-
tk.Button(win, text="Trials and channels", command=config_preprocessing_callback).place(x=10 + config_btn_width + 10, y=y_pos, width=config_btn_width, height=28)
424+
tk.Button(win, text="Trials and channels").place(x=10 + config_btn_width + 10, y=y_pos, width=config_btn_width, height=28)
425425
y_pos += 28
426-
tk.Button(win, text="Detection & Metrics", command=config_preprocessing_callback).place(x=10, y=y_pos, width=config_btn_width, height=28)
427-
tk.Button(win, text="Visualizations", command=config_preprocessing_callback).place(x=10 + config_btn_width + 10, y=y_pos, width=config_btn_width, height=28)
426+
tk.Button(win, text="Detection & Metrics").place(x=10, y=y_pos, width=config_btn_width, height=28)
427+
tk.Button(win, text="Visualizations").place(x=10 + config_btn_width + 10, y=y_pos, width=config_btn_width, height=28)
428428
#y_pos += 40 + 2
429429
#chk_apply_validator = tk.Checkbutton(win, text='Apply BIDS validator', anchor="w", variable=apply_bids_validator, onvalue=1, offvalue=0)
430430
#chk_apply_validator.place(x=20, y=y_pos, width=window_width - 30, height=20)

0 commit comments

Comments
 (0)