Skip to content
Snippets Groups Projects
Commit 7bb96f74 authored by dos's avatar dos Committed by dos
Browse files

py,st3m: ViewManager: Reduce the delay after finishing transition

Two draw calls are enough to ensure it gets displayed on the screen.
parent 9492752e
Branches
Tags bootloader-v1
No related merge requests found
...@@ -245,7 +245,7 @@ class ViewManager(Responder): ...@@ -245,7 +245,7 @@ class ViewManager(Responder):
if self._transition >= 1.0: if self._transition >= 1.0:
self._transition = 1.0 self._transition = 1.0
if self._fully_drawn > 3: # TODO: use actual pipeline depth if self._fully_drawn > 1:
self._end_transition() self._end_transition()
if self._input.buttons.os.middle.pressed: if self._input.buttons.os.middle.pressed:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment