Show the drawings in reverse sorted order (newest first)

pull/145/head
Peter Hutterer 2019-07-16 10:49:04 +10:00
parent d6a2e01acb
commit 293b64c1f3
1 changed files with 1 additions and 1 deletions

View File

@ -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