mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix variable usage
This commit is contained in:
parent
b151c04b00
commit
b5682af9ac
1 changed files with 2 additions and 2 deletions
|
|
@ -126,8 +126,8 @@ class WorkfileBuildPlaceholderDialog(QtWidgets.QDialog):
|
|||
self._last_selected_plugin = None
|
||||
self._plugins_combo.clear()
|
||||
for identifier, plugin in placeholder_plugins.items():
|
||||
label = plugin.label or plugin.identifier
|
||||
self._plugins_combo.addItem(label, plugin.identifier)
|
||||
label = plugin.label or identifier
|
||||
self._plugins_combo.addItem(label, identifier)
|
||||
|
||||
index = self._plugins_combo.findData(last_selected_plugin)
|
||||
if index < 0:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue