Initialize kivy_state obj inside init in mpybit
This commit is contained in:
parent
a6823275bd
commit
96d80a008a
|
@ -11,7 +11,10 @@ from pybitmessage.bitmessagekivy.kivy_state import KivyStateVariables
|
||||||
|
|
||||||
class NavigateApp(App):
|
class NavigateApp(App):
|
||||||
"""Navigation Layout of class"""
|
"""Navigation Layout of class"""
|
||||||
kivy_state_obj = KivyStateVariables()
|
|
||||||
|
def __init__(self):
|
||||||
|
super(NavigateApp, self).__init__()
|
||||||
|
self.kivy_state_obj = KivyStateVariables()
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
"""Method builds the widget"""
|
"""Method builds the widget"""
|
||||||
|
|
Reference in New Issue
Block a user