JamZYM 6 ماه پیش
والد
کامیت
282209fd36
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      main.py

+ 4 - 0
main.py

@@ -46,6 +46,10 @@ class MainWidget(Widget):
         grid01.add_widget(TextInput(text=deviceName,width=self.grid00.width / 2,height=self.grid00.height / 2,font_size=40))
         connect_button = Button(text="Connect",width=self.grid00.width,height=self.grid00.height / 2,center_x=self.grid00.center_x,font_size=40)
         self.grid00.add_widget(connect_button)
+        while True:
+            if connect_button.state == "down":
+                self.clear_widgets(self.grid00)
+                break
 
 class STI2021A(App):
     def __init__(self):