fixed bug 1022831 (Configure Formatting Tags listview keyboard navigation)

Fixes: https://launchpad.net/bugs/1022831
This commit is contained in:
Andreas Preikschat 2012-07-11 20:28:05 +02:00
parent 2e693c0d52
commit b743abac83
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class FormattingTagForm(QtGui.QDialog, Ui_FormattingTagDialog):
QtGui.QDialog.__init__(self, parent)
self.setupUi(self)
QtCore.QObject.connect(self.tagTableWidget,
QtCore.SIGNAL(u'clicked(QModelIndex)'), self.onRowSelected)
QtCore.SIGNAL(u'itemSelectionChanged()'),self.onRowSelected)
QtCore.QObject.connect(self.newPushButton,
QtCore.SIGNAL(u'clicked()'), self.onNewClicked)
QtCore.QObject.connect(self.savePushButton,