mirror of
https://github.com/markqvist/Sideband.git
synced 2025-05-09 01:45:07 -04:00
Fix orientation lock not being obeyed on Android
This commit is contained in:
parent
7039c0330f
commit
3383ac39cc
1 changed files with 4 additions and 0 deletions
|
@ -343,6 +343,10 @@ class SidebandApp(MDApp):
|
||||||
|
|
||||||
self.announces_view = None
|
self.announces_view = None
|
||||||
|
|
||||||
|
ActivityInfo = autoclass('android.content.pm.ActivityInfo')
|
||||||
|
activity = autoclass('org.kivy.android.PythonActivity').mActivity
|
||||||
|
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED)
|
||||||
|
|
||||||
screen = Builder.load_string(root_layout)
|
screen = Builder.load_string(root_layout)
|
||||||
|
|
||||||
return screen
|
return screen
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue