|
@@ -36,6 +36,9 @@ class MainWindow(tk.Frame):
|
|
|
tk.Label(self.controls, textvariable=self.ac_dro_t1, anchor="nw").pack(side="top", fill="both", expand=False)
|
|
|
tk.Label(self.controls, textvariable=self.ac_dro_t2, anchor="nw").pack(side="top", fill="both", expand=False)
|
|
|
|
|
|
+ quit_button = tk.Button(self.controls, text="Quit", command=self.root.destroy, height=2, foreground="red")
|
|
|
+ quit_button.pack(side="bottom", fill="both")
|
|
|
+
|
|
|
calibrate_button = tk.Button(self.controls, text="Calibrate", command=self.calibrate, height=4)
|
|
|
calibrate_button.pack(side="bottom", fill="both")
|
|
|
|