Fix Addressbook context menu delete
This commit is contained in:
parent
4c9e2bf8bb
commit
9a2d36fc5b
|
@ -3348,8 +3348,8 @@ class MyForm(settingsmixin.SMainWindow):
|
||||||
normal = True
|
normal = True
|
||||||
for row in self.ui.tableWidgetAddressBook.selectedIndexes():
|
for row in self.ui.tableWidgetAddressBook.selectedIndexes():
|
||||||
currentRow = row.row()
|
currentRow = row.row()
|
||||||
type = str(self.ui.tableWidgetAddressBook.item(
|
type = self.ui.tableWidgetAddressBook.item(
|
||||||
currentRow, 0).data(Qt.UserRole).toPyObject())
|
currentRow, 0).type
|
||||||
if type != AccountMixin.NORMAL:
|
if type != AccountMixin.NORMAL:
|
||||||
normal = False
|
normal = False
|
||||||
if normal:
|
if normal:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user