File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ def __init__(self, root):
32
32
self .button_clear = tk .Button (root , text = "Clear" , command = self .clear )
33
33
self .button_clear .pack (side = tk .LEFT )
34
34
35
- self .button_undo = tk .Button (root , text = "Undo" , command = self .undo )
35
+ self .button_undo = tk .Button (root , text = "Undo (Cmd/Ctrl Z) " , command = self .undo )
36
36
self .button_undo .pack (side = tk .LEFT )
37
37
38
- self .button_calculate = tk .Button (root , text = "Calculate" , command = self .calculate )
38
+ self .button_calculate = tk .Button (root , text = "Calculate (Return/Enter) " , command = self .calculate )
39
39
self .button_calculate .pack (side = tk .LEFT )
40
40
41
41
self .custom_font = tkFont .Font (family = "Noteworthy" , size = 100 )
@@ -111,7 +111,7 @@ def encode_image_to_base64(image):
111
111
112
112
answer = response .choices [0 ].message .content
113
113
self .draw_answer (answer )
114
- print (answer )
114
+ # print(answer)
115
115
116
116
def command_calculate (self , event ):
117
117
self .calculate ()
You can’t perform that action at this time.
0 commit comments