Fix slide advance for direct selection

Fixes: https://launchpad.net/bugs/738694
This commit is contained in:
Tim Bentley 2011-03-20 14:11:24 +00:00
parent 60ab4cc165
commit 333d654905
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,6 @@ class SlideList(QtGui.QTableWidget):
QtGui.QTableWidget.__init__(self, parent.controller)
self.parent = parent
class SlideController(QtGui.QWidget):
"""
SlideController is the slide controller widget. This widget is what the
@ -858,6 +857,7 @@ class SlideController(QtGui.QWidget):
self.serviceItem.bg_image_bytes = None
self.slidePreview.setPixmap(QtGui.QPixmap.fromImage(frame))
self.selectedRow = row
self.__checkUpdateSelectedSlide(row)
Receiver.send_message(u'slidecontroller_%s_changed' % self.typePrefix,
row)