Skip to content

Commit

Permalink
Minor improvements to Branch doxygen. Make sure xml2palette treats a …
Browse files Browse the repository at this point in the history
…Branch similar to a PythonApp when adding default component parameters.
  • Loading branch information
james-strauss-uwa committed Feb 2, 2022
1 parent c728616 commit def0218
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion daliuge-engine/dlg/drop.py
Original file line number Diff line number Diff line change
Expand Up @@ -2202,7 +2202,7 @@ def initialize(self, **kwargs):
# @par EAGLE_START
# @param category Branch
# @param tag template
# @param[in] param/appclass Application Class/dlg.apps.simple.HelloWorldApp/String/readonly/
# @param[in] param/appclass Application Class/dlg.apps.simple.SimpleBranch/String/readonly/
# \~English Application class
# @param[in] param/group_start Group start/False/Boolean/readwrite/
# \~English Is this node the start of a group?
Expand Down
2 changes: 1 addition & 1 deletion tools/xml2palette/xml2palette.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def add_required_fields_for_category(fields, category):
"libpath", "Library path", "", "", "readwrite", "String", False
)
)
elif category == "PythonApp":
elif category == "PythonApp" or category == "Branch":
if find_field_by_name(fields, "execution_time") is None:
fields.append(
create_field(
Expand Down

0 comments on commit def0218

Please sign in to comment.