This commit is contained in:
Lincoln-LM 2022-01-05 06:24:16 -07:00
parent a7a37eca31
commit 41e36079e6
2 changed files with 10 additions and 5 deletions

View File

@ -4,13 +4,18 @@
"image": "images\\iphone\\eye.png", "image": "images\\iphone\\eye.png",
"view": [ "view": [
280, 280,
364, 375,
60, 60,
60 60
], ],
"thresh": 0.9, "thresh": 0.9,
"white_delay": 0.0, "white_delay": 3.0,
"advance_delay": 0, "advance_delay": 0,
"advance_del": 0, "advance_del": 1,
"crop": [0,0,0,0] "crop": [
0,
0,
0,
0
]
} }

View File

@ -453,7 +453,7 @@ class Application(tk.Frame):
self.config_json["thresh"] = float(self.pos_th.get()) self.config_json["thresh"] = float(self.pos_th.get())
self.config_json["WindowPrefix"] = self.prefix_input.get() self.config_json["WindowPrefix"] = self.prefix_input.get()
self.config_json["white_delay"] = float(self.whi_del.get()) self.config_json["white_delay"] = float(self.whi_del.get())
self.config_json["advance_del"] = int(self.adv_del.get()) self.config_json["advance_delay"] = int(self.adv_del.get())
self.config_json["MonitorWindow"] = self.monitor_window_var.get() self.config_json["MonitorWindow"] = self.monitor_window_var.get()
self.adv['text'] = self.advances self.adv['text'] = self.advances
self.cd['text'] = self.count_down self.cd['text'] = self.count_down