From 2448b98b31a00b7d246fd8758c5127f560acbcff Mon Sep 17 00:00:00 2001 From: Vincent Texier <vit@free.fr> Date: Sun, 15 Feb 2015 18:02:10 +0100 Subject: [PATCH] Fixes #76 exception when context menu in members date columns --- src/cutecoin/gui/community_tab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cutecoin/gui/community_tab.py b/src/cutecoin/gui/community_tab.py index c47503d8..f723bdda 100644 --- a/src/cutecoin/gui/community_tab.py +++ b/src/cutecoin/gui/community_tab.py @@ -55,7 +55,7 @@ class CommunityTabWidget(QWidget, Ui_CommunityTabWidget): def member_context_menu(self, point): index = self.table_community_members.indexAt(point) model = self.table_community_members.model() - if index.row() < model.rowCount(): + if index.row() < model.rowCount() and index.column() < model.columnCount() - 2: source_index = model.mapToSource(index) pubkey_col = model.sourceModel().columns.index('Pubkey') pubkey_index = model.sourceModel().index(source_index.row(), -- GitLab