mirror of https://github.com/kivy/kivy.git
rename: is_build -> built (short for 'was built' or 'has been built', but just 'is build' doesn't make sense)
This commit is contained in:
parent
4788f4a12c
commit
3c308c9e9c
|
@ -35,7 +35,7 @@ class App(EventDispatcher):
|
|||
self.register_event_type('on_stop')
|
||||
self.options = kwargs
|
||||
self.use_default_uxl = kwargs.get('use_default_uxl', True)
|
||||
self.is_build = False
|
||||
self.built = False
|
||||
self.root = None
|
||||
|
||||
def build(self):
|
||||
|
@ -47,7 +47,7 @@ class App(EventDispatcher):
|
|||
def run(self):
|
||||
'''Launch the app in standalone mode
|
||||
'''
|
||||
if not self.is_build:
|
||||
if not self.built:
|
||||
root = self.build()
|
||||
if root:
|
||||
self.root = root
|
||||
|
|
Loading…
Reference in New Issue