From b743abac836a33bd1d536891321e9494be76b506 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Wed, 11 Jul 2012 20:28:05 +0200 Subject: [PATCH] fixed bug 1022831 (Configure Formatting Tags listview keyboard navigation) Fixes: https://launchpad.net/bugs/1022831 --- openlp/core/ui/formattingtagform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/formattingtagform.py b/openlp/core/ui/formattingtagform.py index 9d26e6683..e7b996180 100644 --- a/openlp/core/ui/formattingtagform.py +++ b/openlp/core/ui/formattingtagform.py @@ -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,