diff options
Diffstat (limited to 'share/extensions')
| -rwxr-xr-x | share/extensions/dxf_input.py | 2 | ||||
| -rw-r--r-- | share/extensions/image_attributes.inx | 2 | ||||
| -rw-r--r-- | share/extensions/plotter.inx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/share/extensions/dxf_input.py b/share/extensions/dxf_input.py index 362f35be9..acfed0921 100755 --- a/share/extensions/dxf_input.py +++ b/share/extensions/dxf_input.py @@ -35,7 +35,7 @@ def export_MTEXT(): y = vals[groups['20']][0] # optional group codes : (21, 40, 50) (direction, text height mm, text angle) size = 12 # default fontsize in px - if vals[groups['40']]: + if vals[groups['40']] and vals[groups['40']][0]: size = scale*vals[groups['40']][0] attribs = {'x': '%f' % x, 'y': '%f' % y, 'style': 'font-size: %.1fpx; fill: %s; font-family: %s' % (size, color, options.font)} angle = 0 # default angle in degrees diff --git a/share/extensions/image_attributes.inx b/share/extensions/image_attributes.inx index a353d17e5..d9ae9cefb 100644 --- a/share/extensions/image_attributes.inx +++ b/share/extensions/image_attributes.inx @@ -14,7 +14,7 @@ <_param name="basic_desc1" type="description">Render all bitmap images like in older Inskcape versions. Available options:</_param> - <param name="fix_scaling" type="boolean" _gui-text="Support non-unifom scaling">true</param> + <param name="fix_scaling" type="boolean" _gui-text="Support non-uniform scaling">true</param> <param name="fix_rendering" type="boolean" _gui-text="Render images blocky">false</param> </page> diff --git a/share/extensions/plotter.inx b/share/extensions/plotter.inx index 6a8bfb3d4..c91857b05 100644 --- a/share/extensions/plotter.inx +++ b/share/extensions/plotter.inx @@ -49,7 +49,7 @@ <_item value="xonxoff">Software (XON/XOFF)</_item> <_item value="rtscts">Hardware (RTS/CTS)</_item> <_item value="dsrdtrrtscts">Hardware (DSR/DTR + RTS/CTS)</_item> - <_item msgctxt="Flow control" value="">None</_item> + <_item value="none">None</_item> </param> <param name="commandLanguage" type="enum" _gui-text="Command language:" _gui-description="The command language to use (Default: HPGL)"> <_item value="HPGL">HPGL</_item> |
