mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
Improved lifecycle management on Android
This commit is contained in:
parent
1b8bb58683
commit
23a2a95784
@ -253,10 +253,15 @@ class SidebandApp(MDApp):
|
|||||||
w.height, w.size_hint_y, w.opacity, w.disabled = 0, None, 0, True
|
w.height, w.size_hint_y, w.opacity, w.disabled = 0, None, 0, True
|
||||||
|
|
||||||
def quit_action(self, sender):
|
def quit_action(self, sender):
|
||||||
RNS.exit()
|
self.root.ids.nav_drawer.set_state("closed")
|
||||||
RNS.log("RNS shutdown complete")
|
self.sideband.should_persist_data()
|
||||||
MDApp.get_running_app().stop()
|
|
||||||
Window.close()
|
def final_exit(dt):
|
||||||
|
RNS.exit()
|
||||||
|
MDApp.get_running_app().stop()
|
||||||
|
Window.close()
|
||||||
|
|
||||||
|
Clock.schedule_once(final_exit, 0.5)
|
||||||
|
|
||||||
def announce_now_action(self, sender=None):
|
def announce_now_action(self, sender=None):
|
||||||
self.sideband.lxmf_announce()
|
self.sideband.lxmf_announce()
|
||||||
|
Loading…
Reference in New Issue
Block a user