1
0

qml: remove back button in top bar, move menu button to left

add AppController.isAndroid function to test for android platform. Disable fade in if not on android
This commit is contained in:
Sander van Grieken
2023-01-06 13:41:47 +01:00
parent 20eacc37e1
commit 1887502151
2 changed files with 26 additions and 19 deletions

View File

@@ -188,6 +188,9 @@ class QEAppController(QObject):
else:
self._plugins.disable(plugin)
@pyqtSlot(result=bool)
def isAndroid(self):
return 'ANDROID_DATA' in os.environ
class ElectrumQmlApplication(QGuiApplication):