Skip to content

Commit

Permalink
wxGUI/g.extension: fix failure to uninstall addon (#1524)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilason committed Apr 14, 2021
1 parent 3a96670 commit 0f10060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/modules/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ def GetExtensions(self):
"""
extList = list()
for i in range(self.GetItemCount()):
if self.IsChecked(i):
if self.IsItemChecked(i):
name = self.GetItemText(i)
if name:
extList.append(name)
Expand Down

0 comments on commit 0f10060

Please sign in to comment.