Graduate

Add GUI title

...@@ -49,6 +49,7 @@ class Client(tk.Frame): ...@@ -49,6 +49,7 @@ class Client(tk.Frame):
49 self.cap.set(4, self.cam_height) 49 self.cap.set(4, self.cam_height)
50 50
51 # tkinter GUI 51 # tkinter GUI
52 + self.parent.title("출석시스템")
52 self.width = 740 53 self.width = 740
53 self.height = 640 54 self.height = 640
54 self.parent = parent 55 self.parent = parent
......
...@@ -48,6 +48,7 @@ class Register(tk.Frame): ...@@ -48,6 +48,7 @@ class Register(tk.Frame):
48 self.image_list = [] 48 self.image_list = []
49 49
50 # tkinter GUI 50 # tkinter GUI
51 + self.parent.title("출석 데이터 등록")
51 self.width = 740 52 self.width = 740
52 self.height = 640 53 self.height = 640
53 self.parent = parent 54 self.parent = parent
......