forked from Archive/PX4-Autopilot
Add Plane VTail to image group metadata
This commit is contained in:
parent
e6d78b89a2
commit
cb8a2b533d
|
@ -30,9 +30,8 @@ class MarkdownTablesOutput():
|
|||
# Display an image of the frame
|
||||
image_name = group.GetImageName()
|
||||
result += '<div>\n'
|
||||
if image_name != 'AirframeUnknown':
|
||||
image_name = image_path + image_name
|
||||
result += '<img src="%s.svg" width="29%%" style="max-height: 180px;"/>\n' % (image_name)
|
||||
image_name = image_path + image_name
|
||||
result += '<img src="%s.svg" width="29%%" style="max-height: 180px;"/>\n' % (image_name)
|
||||
|
||||
# check if all outputs are equal for the group: if so, show them
|
||||
# only once
|
||||
|
|
|
@ -64,6 +64,8 @@ class ParameterGroup(object):
|
|||
return "AirframeSimulation"
|
||||
elif (self.name == "Plane A-Tail"):
|
||||
return "PlaneATail"
|
||||
elif (self.name == "Plane V-Tail"):
|
||||
return "PlaneVTail"
|
||||
elif (self.name == "VTOL Duo Tailsitter"):
|
||||
return "VTOLDuoRotorTailSitter"
|
||||
elif (self.name == "Standard VTOL"):
|
||||
|
|
Loading…
Reference in New Issue