Merge "Fix vote order in review dialog box"
This commit is contained in:
commit
85858e1e5f
@ -128,7 +128,7 @@ class ReviewDialog(urwid.WidgetWrap):
|
|||||||
current = 0
|
current = 0
|
||||||
else:
|
else:
|
||||||
current = current.value
|
current = current.value
|
||||||
for value in values[category]:
|
for value in sorted(values[category], reverse=True):
|
||||||
if value > 0:
|
if value > 0:
|
||||||
strvalue = '+%s' % value
|
strvalue = '+%s' % value
|
||||||
elif value == 0:
|
elif value == 0:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user