goto top/bottom when submitting

pull/4/head
Blake DeMarcy 2017-04-20 06:13:40 -05:00
parent 60c5f9aad1
commit 6e959a510e
1 changed files with 6 additions and 2 deletions

View File

@ -1514,9 +1514,13 @@ class ExternalEditor(urwid.Terminal):
if body and not re.search("^>>[0-9]+$", body):
self.params.update({"body": body})
network.request(self.endpoint, **self.params)
return app.refresh()
app.refresh()
if app.mode == "thread":
app.goto_post(app.thread["reply_count"])
else:
app.box.keypress(app.loop.screen_size, "t")
else:
return app.temp_footer_message("EMPTY POST DISCARDED")
app.temp_footer_message("EMPTY POST DISCARDED")
def keypress(self, size, key):