We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fffbaa2 commit 7cbd0f9Copy full SHA for 7cbd0f9
registers.py
@@ -898,7 +898,7 @@ def write_bytefield_row( fd, fields ):
898
columnOffset += columnWidth
899
# remove whitespace to save space
900
headers = [h.replace(" ", "") for h in headers]
901
- fd.write('(draw-column-headers {:font-size 15 :height 16 :labels [%s]})\n' % " ".join(f'"{h}"' for h in reversed(headers)))
+ fd.write('(draw-column-headers {:font-size 15 :height 17 :labels [%s]})\n' % " ".join(f'"{h}"' for h in reversed(headers)))
902
903
for f in fields:
904
fd.write('(draw-box (text "%s" {:font-size 20}) {:span %s})\n' % ( f.name, f.columnWidth() ))
0 commit comments