Cleaned up extra brackets

This commit is contained in:
Ian Knight 2016-04-17 01:20:58 +09:30
parent ae6e6baeca
commit 665a35b085
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ class ListPreviewWidget(QtWidgets.QTableWidget, RegistryProperties):
# Check if auto-scroll disabled (None) and validate value as dict containing 'dist' and 'pos'
# 'dist' represents the slide to scroll to relative to the new slide (-1 = previous, 0 = current, 1 = next)
# 'pos' represents the vert position of of the slide (0 = in view, 1 = top, 2 = middle, 3 = bottom)
if (not isinstance(autoscrolling, dict)) or ('dist' not in autoscrolling) or ('pos' not in autoscrolling):
if not isinstance(autoscrolling, dict) or 'dist' not in autoscrolling or 'pos' not in autoscrolling:
return
# prevent scrolling past list bounds
scroll_to_slide = slide + autoscrolling['dist']