1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-16 19:55:12 +00:00

fix(momotalk): correct sort switch

This commit is contained in:
YoursFunny 2023-12-23 17:23:40 +08:00
parent 30d63fa193
commit 34c5323df3
Signed by: YoursFunny
GPG Key ID: 207EDC3CD5B40F9C
4 changed files with 17 additions and 17 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -113,26 +113,26 @@ SKIP = ButtonWrapper(
button=(1192, 103, 1229, 141),
),
)
SORT_OFF = ButtonWrapper(
name='SORT_OFF',
SORT_ASCENDING = ButtonWrapper(
name='SORT_ASCENDING',
jp=None,
en=Button(
file='./assets/en/momotalk/SORT_OFF.png',
area=(591, 158, 662, 199),
search=(571, 138, 682, 219),
color=(235, 237, 238),
button=(591, 158, 662, 199),
file='./assets/en/momotalk/SORT_ASCENDING.png',
area=(631, 166, 648, 188),
search=(611, 146, 668, 208),
color=(221, 228, 233),
button=(631, 166, 648, 188),
),
)
SORT_ON = ButtonWrapper(
name='SORT_ON',
SORT_DESCENDING = ButtonWrapper(
name='SORT_DESCENDING',
jp=None,
en=Button(
file='./assets/en/momotalk/SORT_ON.png',
area=(594, 159, 658, 196),
search=(574, 139, 678, 216),
color=(233, 235, 236),
button=(594, 159, 658, 196),
file='./assets/en/momotalk/SORT_DESCENDING.png',
area=(631, 166, 648, 189),
search=(611, 146, 668, 209),
color=(221, 228, 234),
button=(631, 166, 648, 189),
),
)
STORY = ButtonWrapper(

View File

@ -19,8 +19,8 @@ SWITCH_UNREAD.add_state("on", UNREAD_ON)
SWITCH_UNREAD.add_state("off", UNREAD_OFF)
SWITCH_SORT = Switch("Sort_switch")
SWITCH_SORT.add_state("on", SORT_ON)
SWITCH_SORT.add_state("off", SORT_OFF)
SWITCH_SORT.add_state("ascending", SORT_ASCENDING)
SWITCH_SORT.add_state("descending", SORT_DESCENDING)
"""Required for template matching as reply and story
button can be found in different locations"""
@ -145,7 +145,7 @@ class MomoTalkUI(UI):
"""
if self.match_color(FIRST_UNREAD, threshold=80) and self.select_then_disappear(FIRST_UNREAD, SELECT_STUDENT, force_select=True):
return True
logger.warn("No students available for interaction")
logger.warning("No students available for interaction")
return False
def chat(self):