Update Inky Render to not crash the script

Updated Inky so in case the render cannot display anything to the hardware everything else works (like the webbrowser) Other renders should do the same
This commit is contained in:
Forrest Fuqua 2019-10-03 19:48:44 -04:00 committed by GitHub
parent 683d260c74
commit 31db4d062c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -190,7 +190,10 @@ class Display(View):
])
self._display.set_image(img_buffer)
self._display.show()
try:
self._display.show()
except:
print("")
def _papirus_render(self):
self._display.display(self._canvas)