displaydevice: Split update from _pushFrame

This allows loopbackdisplaydevice to function.
This commit is contained in:
June Tate-Gans 2021-05-08 19:27:26 -05:00
parent 18e536d7f7
commit 83f124bc9c

View File

@ -54,4 +54,7 @@ class G13DisplayDevice(DisplayDevice):
def update(self, image):
lpbm = ImageToLPBM(image)
self._pushFrame(lpbm)
def _pushFrame(self, lpbm):
self._manager.setLCDBuffer(lpbm)