1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 03:58:22 +08:00

Opt: Faster switch between page_event and page_campaign

- Fix: Unable to run dev_tools because task not bind
This commit is contained in:
LmeSzinc
2021-09-26 05:02:13 +08:00
parent 019ce4f1dd
commit e1f6df02bd
8 changed files with 15 additions and 770 deletions

View File

@@ -61,14 +61,16 @@ page_campaign_menu.link(button=CAMPAIGN_MENU_GOTO_DAILY, destination=page_daily)
# Event
page_event = Page(EVENT_CHECK)
page_event.link(button=GOTO_MAIN, destination=page_main)
# page_event.link(button=BACK_ARROW, destination=page_campaign)
page_event.link(button=BACK_ARROW, destination=page_campaign)
page_campaign_menu.link(button=CAMPAIGN_MENU_GOTO_EVENT, destination=page_event)
page_campaign.link(button=CAMPAIGN_GOTO_EVENT, destination=page_event)
# SP
page_sp = Page(SP_CHECK)
page_sp.link(button=GOTO_MAIN, destination=page_main)
# page_sp.link(button=BACK_ARROW, destination=page_campaign)
page_sp.link(button=BACK_ARROW, destination=page_campaign)
page_campaign_menu.link(button=CAMPAIGN_MENU_GOTO_EVENT, destination=page_sp)
page_campaign.link(button=CAMPAIGN_GOTO_EVENT, destination=page_sp)
# Operation Siren
page_os = Page(OS_CHECK)