Skip to content

Commit 64118cb

Browse files
authored
Merge pull request #25472 from meeseeksmachine/auto-backport-of-pr-25470-on-6.x
Backport PR #25470 on branch 6.x (PR: Remove translation call for variable on `QInputDialogCombobox` (Explorer))
2 parents 8ccdf5d + 167db08 commit 64118cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spyder/plugins/explorer/widgets/explorer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def __init__(self, parent, title, label, items, label_combo, **kwargs):
226226
grid_layout.addWidget(QLabel(label), 0, 0)
227227
grid_layout.addWidget(self.text_edit, 1, 0)
228228

229-
combo_label = QLabel(_(label_combo))
229+
combo_label = QLabel(label_combo)
230230
self.combo = SpyderComboBox(self)
231231
self.combo.addItems(items)
232232
grid_layout.addWidget(combo_label, 0, 1)

0 commit comments

Comments
 (0)