Skip to content

Commit

Permalink
Fix incorrect parameters passed to self.__create_relation_widget
Browse files Browse the repository at this point in the history
  • Loading branch information
manisandro committed Dec 4, 2024
1 parent 9da475e commit 9d233ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config_generator/dnd_form_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def __add_autolayout_fields(self, maplayer, projectname, layername, project, par
if relation.get("referencedLayer") != layerid or referencingLayer is None or fieldRef is None:
continue

widget = self.__create_relation_widget(project, relation, True)
widget = self.__create_relation_widget(projectname, layername, project, relation, True)
if not widget:
continue

Expand Down

0 comments on commit 9d233ae

Please sign in to comment.