Move to start of timeline

merge-requests/30/head
Bob Mottram 2021-03-12 19:16:23 +00:00
parent c608644db0
commit ced2a74a5e
1 changed files with 4 additions and 1 deletions

View File

@ -664,12 +664,15 @@ def runNotificationsClient(baseDir: str, proxyType: str, httpPrefix: str,
keyPress = _waitForKeypress(2, debug)
break
elif keyPress.startswith('show dm'):
currDMIndex = 0
_showLocalBox('dm', currDMIndex, 10)
currTimeline = 'dm'
elif keyPress.startswith('show sen'):
currSentIndex = 0
_showLocalBox('sent', currSentIndex, 10)
currTimeline = 'sent'
elif keyPress.startswith('show in'):
elif keyPress == 'show' or keyPress.startswith('show in'):
currInboxIndex = 0
_showLocalBox('inbox', currInboxIndex, 10)
currTimeline = 'inbox'
elif keyPress.startswith('next'):