From cff1af1b4fd2d828562b6391b74257b55a8bc2d2 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Sun, 26 Feb 2017 20:03:47 +0100 Subject: [PATCH] Subscription wrong tab - when subscribing from addressbook, it switched to blacklist tab instead of subscriptions --- src/bitmessageqt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitmessageqt/__init__.py b/src/bitmessageqt/__init__.py index 1580cd8b..b067d9d3 100644 --- a/src/bitmessageqt/__init__.py +++ b/src/bitmessageqt/__init__.py @@ -3309,7 +3309,7 @@ class MyForm(settingsmixin.SMainWindow): continue labelAtCurrentRow = self.ui.tableWidgetAddressBook.item(currentRow,0).text().toUtf8() self.addSubscription(addressAtCurrentRow, labelAtCurrentRow) - self.ui.tabWidget.setCurrentIndex(4) + self.ui.tabWidget.setCurrentIndex(2) def on_context_menuAddressBook(self, point): self.popMenuAddressBook = QtGui.QMenu(self)