mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-12-17 14:54:26 +01:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35b0529f6d | ||
|
|
56f4f20bb2 |
@@ -141,7 +141,7 @@ class NomadNetworkApp:
|
|||||||
RNS.Identity.remember(
|
RNS.Identity.remember(
|
||||||
packet_hash=None,
|
packet_hash=None,
|
||||||
destination_hash=self.lxmf_destination.hash,
|
destination_hash=self.lxmf_destination.hash,
|
||||||
public_key=self.identity.pub_bytes,
|
public_key=self.identity.get_public_key(),
|
||||||
app_data=None
|
app_data=None
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.0.3"
|
__version__ = "0.0.4"
|
||||||
@@ -31,7 +31,7 @@ class ConversationsArea(urwid.LineBox):
|
|||||||
self.delegate.new_conversation()
|
self.delegate.new_conversation()
|
||||||
elif key == "tab":
|
elif key == "tab":
|
||||||
self.delegate.app.ui.main_display.frame.set_focus("header")
|
self.delegate.app.ui.main_display.frame.set_focus("header")
|
||||||
elif key == "up" and self.delegate.ilb.first_item_is_selected():
|
elif key == "up" and (self.delegate.ilb.first_item_is_selected() or self.delegate.ilb.body_is_empty()):
|
||||||
self.delegate.app.ui.main_display.frame.set_focus("header")
|
self.delegate.app.ui.main_display.frame.set_focus("header")
|
||||||
else:
|
else:
|
||||||
return super(ConversationsArea, self).keypress(size, key)
|
return super(ConversationsArea, self).keypress(size, key)
|
||||||
|
|||||||
Reference in New Issue
Block a user