added fake address list
This commit is contained in:
parent
a59b25f1ca
commit
8ad43c2fcd
|
@ -19,7 +19,7 @@
|
||||||
# spacing: "12dp"
|
# spacing: "12dp"
|
||||||
size_hint_y: None
|
size_hint_y: None
|
||||||
# height: "120dp"
|
# height: "120dp"
|
||||||
height: 1.5*label.height+address.height
|
height: label.height+address.height
|
||||||
BoxLayout:
|
BoxLayout:
|
||||||
orientation: 'vertical'
|
orientation: 'vertical'
|
||||||
MDTextField:
|
MDTextField:
|
||||||
|
|
|
@ -476,6 +476,7 @@ class NavigateApp(MDApp):
|
||||||
state.in_composer = False
|
state.in_composer = False
|
||||||
self.root.ids.scr_mngr.current = 'inbox'
|
self.root.ids.scr_mngr.current = 'inbox'
|
||||||
elif self.root.ids.scr_mngr.current == "showqrcode":
|
elif self.root.ids.scr_mngr.current == "showqrcode":
|
||||||
|
self.set_common_header()
|
||||||
self.root.ids.scr_mngr.current = 'myaddress'
|
self.root.ids.scr_mngr.current = 'myaddress'
|
||||||
elif self.root.ids.scr_mngr.current == "random":
|
elif self.root.ids.scr_mngr.current == "random":
|
||||||
self.root.ids.scr_mngr.current = 'login'
|
self.root.ids.scr_mngr.current = 'login'
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
import time
|
import time
|
||||||
from bitmessagekivy.tests.telenium_process import TeleniumTestProcess
|
from bitmessagekivy.tests.telenium_process import TeleniumTestProcess
|
||||||
from bmconfigparser import BMConfigParser
|
|
||||||
from .common import ordered
|
from .common import ordered
|
||||||
|
|
||||||
data = BMConfigParser().addresses()
|
data = [
|
||||||
|
'BM-2cWmjntZ47WKEUtocrdvs19y5CivpKoi1h',
|
||||||
|
'BM-2cVpswZo8rWLXDVtZEUNcDQvnvHJ6TLRYr'
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
class AddressBook(TeleniumTestProcess):
|
class AddressBook(TeleniumTestProcess):
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
from bmconfigparser import BMConfigParser
|
|
||||||
from bitmessagekivy.tests.telenium_process import TeleniumTestProcess
|
from bitmessagekivy.tests.telenium_process import TeleniumTestProcess
|
||||||
from .common import ordered
|
from .common import ordered
|
||||||
|
|
||||||
data = BMConfigParser().addresses()
|
data = [
|
||||||
|
'BM-2cWmjntZ47WKEUtocrdvs19y5CivpKoi1h',
|
||||||
|
'BM-2cVpswZo8rWLXDVtZEUNcDQvnvHJ6TLRYr'
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
class MyAddressScreen(TeleniumTestProcess):
|
class MyAddressScreen(TeleniumTestProcess):
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
from bitmessagekivy.tests.telenium_process import TeleniumTestProcess
|
from bitmessagekivy.tests.telenium_process import TeleniumTestProcess
|
||||||
from bmconfigparser import BMConfigParser
|
|
||||||
from .common import ordered
|
from .common import ordered
|
||||||
|
|
||||||
data = BMConfigParser().addresses()
|
data = [
|
||||||
|
'BM-2cWmjntZ47WKEUtocrdvs19y5CivpKoi1h',
|
||||||
|
'BM-2cVpswZo8rWLXDVtZEUNcDQvnvHJ6TLRYr'
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
class SendMessage(TeleniumTestProcess):
|
class SendMessage(TeleniumTestProcess):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user