This commit is contained in:
yumoqing 2021-04-24 19:13:42 +08:00
parent b485023bae
commit 406cb7620e
2 changed files with 7 additions and 1 deletions

View File

@ -111,6 +111,11 @@ class BlocksApp(App):
self.buildCsses(d)
Logger.info('blocksapp: csses=%s', self.csses)
def on_rotate(self,*largs):
self.current_rotation = Window.rotation
Logger.info('BlocksApp:on_rotate(), largs=%s',
self.current_rotation)
def buildCsses(self, dic):
for k,v in dic.items():
if isinstance(v,dict):
@ -141,6 +146,7 @@ class BlocksApp(App):
}
self.public_headers = {}
Window.bind(on_request_close=self.on_close)
Window.bind(on_rotate=self.rotate)
Window.bind(size=self.device_info)
self.workers = Workers(maxworkers=config.maxworkers or 80)
self.workers.start()

View File

@ -65,7 +65,7 @@ class XCamera(Camera):
__events__ = ('on_picture_taken', 'on_camera_ready')
def __init__(self, **kwargs):
Builder.load_file(os.path.join(ROOT, "xcamera.kv"))
# Builder.load_file(os.path.join(ROOT, "xcamera.kv"))
super().__init__(**kwargs)
def _on_index(self, *largs):