StefanSchippers / xschem

A schematic editor for VLSI/Asic/Analog custom designs, netlist backends for VHDL, Spice and Verilog. The tool is focused on hierarchy and parametric designs, to maximize circuit reuse.
Other
297 stars 21 forks source link

Ability to change font size globally for all components #185

Closed georgtree closed 3 months ago

georgtree commented 3 months ago

Hello! Question - is it possible to set global font size which overrides all component's texts? Sometimes it is convenient to change text size to remove text and elements overlap for better readability before export.

Thank you in advance, George.

StefanSchippers commented 3 months ago

There is a tcl variable cairo_font_scale that does this globally. However it was used only at startup. I have made a small change. you can now do in the xschem console: set cairo_font_scale 0.7; xschem redraw to scale all fonts. Default value for cairo_font_scale is 1,0

georgtree commented 3 months ago

Great, thank you!