elParaguayo / RPi-InfoScreen-Kivy

Improved version of info screen using Kivy. NOTE: This project is no longer actively maintained.
GNU General Public License v3.0
58 stars 25 forks source link

Webserver bug #64

Closed elParaguayo closed 8 years ago

elParaguayo commented 8 years ago

Reported on forum: https://www.raspberrypi.org/forums/viewtopic.php?f=41&t=121392&p=932499#p931693

Issue is that screen isn't built before webserver started.

DirkUK commented 8 years ago

Unfortunately that doesn't wok. Just before the while loop infoapp is set to the uninstantiated class:

infoapp = App.get_running_app()

and the while loop is never entered. If you replace this with

infoapp = None

it does work as expected.

elParaguayo commented 8 years ago

Yes. That would make sense. I'll merge tomorrow.