From 0c3b5da26b7014131fd9815ad1b1f19dab2e73aa Mon Sep 17 00:00:00 2001 From: Adam Saudagar Date: Thu, 9 Mar 2023 15:38:21 +0530 Subject: [PATCH] #156 renamed label to match its function --- fishy/gui/main_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fishy/gui/main_gui.py b/fishy/gui/main_gui.py index 21c5555..ed84abe 100644 --- a/fishy/gui/main_gui.py +++ b/fishy/gui/main_gui.py @@ -89,7 +89,7 @@ def _create(gui: 'GUI'): config.set("show_grab", new_val) show_grab_var = tk.IntVar() show_grab_var.set(config.get("show_grab", 0)) - debug_menu.add_checkbutton(label="Show Grab Window", variable=show_grab_var, command=lambda: toggle_show_grab(), onvalue=1) + debug_menu.add_checkbutton(label="Save Screenshots", variable=show_grab_var, command=lambda: toggle_show_grab(), onvalue=1) def select_sslib(selected_i): config.set("sslib", selected_i)