From 293b64c1f34283a9c3b9a571e3ccebede1c579ac Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 16 Jul 2019 10:49:04 +1000 Subject: [PATCH] Show the drawings in reverse sorted order (newest first) --- tuhigui/drawingperspective.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuhigui/drawingperspective.py b/tuhigui/drawingperspective.py index eac1aff..178f986 100644 --- a/tuhigui/drawingperspective.py +++ b/tuhigui/drawingperspective.py @@ -63,7 +63,7 @@ class DrawingPerspective(Gtk.Stack): self._update_sync_label() def _update_drawings(self, device, pspec): - for ts in self.device.drawings_available: + for ts in reversed(sorted(self.device.drawings_available)): if ts in self.known_drawings: continue