mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-25 17:57:02 +00:00
Fix #1011. Add example tooltips of add-on preferences external commands.
This commit is contained in:
@@ -1891,10 +1891,10 @@ class BIM_UL_classifications(bpy.types.UIList):
|
|||||||
|
|
||||||
class BIM_ADDON_preferences(bpy.types.AddonPreferences):
|
class BIM_ADDON_preferences(bpy.types.AddonPreferences):
|
||||||
bl_idname = "blenderbim"
|
bl_idname = "blenderbim"
|
||||||
svg2pdf_command: StringProperty(name="SVG to PDF Command")
|
svg2pdf_command: StringProperty(name="SVG to PDF Command", description="E.g. [['inkscape', svg, '-o', pdf]]")
|
||||||
svg2dxf_command: StringProperty(name="SVG to DXF Command")
|
svg2dxf_command: StringProperty(name="SVG to DXF Command", description="E.g. [['inkscape', svg, '-o', eps], ['pstoedit', '-dt', '-f', 'dxf:-polyaslines -mm', eps, dxf, '-psarg', '-dNOSAFER']]")
|
||||||
svg_command: StringProperty(name="SVG Command")
|
svg_command: StringProperty(name="SVG Command", description="E.g. [['firefox-bin', path]]")
|
||||||
pdf_command: StringProperty(name="PDF Command")
|
pdf_command: StringProperty(name="PDF Command", description="E.g. [['firefox-bin', path]]")
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
layout = self.layout
|
layout = self.layout
|
||||||
|
|||||||
Reference in New Issue
Block a user