mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2026-01-18 05:45:30 +00:00
Compare commits
No commits in common. "64a2fed251a67b3ce6ea3b9194c72b4d9434352e" and "dd5e6d78034856aef52da4f9c440af6368ffc77b" have entirely different histories.
64a2fed251
...
dd5e6d7803
@ -432,6 +432,6 @@ if __name__ == "__main__":
|
|||||||
app.title("MCE Manager")
|
app.title("MCE Manager")
|
||||||
linker.sidebar = app
|
linker.sidebar = app
|
||||||
config.load_config()
|
config.load_config()
|
||||||
daemon_thread = threading.Thread(target=app.check_lock, daemon=True)
|
thread = threading.Thread(target=app.check_lock)
|
||||||
daemon_thread.start()
|
thread.start()
|
||||||
app.mainloop()
|
app.mainloop()
|
||||||
@ -5,7 +5,6 @@ from module.logger import logger
|
|||||||
from tasks.base.page import page_main
|
from tasks.base.page import page_main
|
||||||
from tasks.base.ui import UI
|
from tasks.base.ui import UI
|
||||||
from tasks.login.assets.assets_login import LOGIN_CONFIRM, LOGIN_LOADING, UPDATE, SURVEY
|
from tasks.login.assets.assets_login import LOGIN_CONFIRM, LOGIN_LOADING, UPDATE, SURVEY
|
||||||
from tasks.base.assets.assets_base_page import MAIN_GO_TO_MAIL
|
|
||||||
|
|
||||||
|
|
||||||
class Login(UI):
|
class Login(UI):
|
||||||
@ -94,10 +93,6 @@ class Login(UI):
|
|||||||
continue
|
continue
|
||||||
if self.ui_additional():
|
if self.ui_additional():
|
||||||
continue
|
continue
|
||||||
# press emulator back button when random popup in main
|
|
||||||
if self.appear(MAIN_GO_TO_MAIL) and not self.match_color(MAIN_GO_TO_MAIL):
|
|
||||||
self.device.u2.press("back")
|
|
||||||
continue
|
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user