From e8db0f50237501e295c63776d57162d7b008d94d Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Tue, 9 Jun 2020 15:57:43 -0700 Subject: [PATCH] Revert rotation setter to original --- displayio/display.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/displayio/display.py b/displayio/display.py index 4db7fd1..10ccf4e 100644 --- a/displayio/display.py +++ b/displayio/display.py @@ -135,7 +135,7 @@ class Display: self._height = height self._colstart = colstart self._rowstart = rowstart - self._rotation = 0 + self._rotation = rotation self._auto_brightness = auto_brightness self._brightness = brightness self._auto_refresh = auto_refresh @@ -144,7 +144,6 @@ class Display: self._subrectangles = [] self._bounds_encoding = ">BB" if single_byte_bounds else ">HH" self._current_group = None - self.rotation = rotation displays.append(self) self._refresh_thread = None if self._auto_refresh: -- 2.49.0