Skip to content

Commit 0fa91b9

Browse files
committed
utils/textimport: Remove 'exclusive' kwarg from QActionGroup call
In Qt 5.14 'exclusive' is no longer a Q_PROPERTY of QActionGroup
1 parent 9eba9f7 commit 0fa91b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/widgets/utils/textimport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ def __run_type_columns_menu(self, pos, columns):
11081108
else:
11091109
current = None
11101110
cb = self.column_type_edit_cb
1111-
g = QActionGroup(menu, exclusive=True)
1111+
g = QActionGroup(menu)
11121112
current_action = None
11131113
# 'Copy' the column types model into a menu
11141114
for i in range(cb.count()):

0 commit comments

Comments
 (0)