tools: fix missing progress hints for TBD funcs

This commit is contained in:
Marcin Kurczewski 2023-09-28 10:00:51 +02:00
parent 3444802baf
commit f240c192fb
No known key found for this signature in database
GPG Key ID: CC65E6FD28CAE42A
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
viewBox="-2 -2 751 1007"
xmlns="http://www.w3.org/2000/svg">
<style>
.todo { fill: none; stroke: rgba(100, 100, 100, 0.5); stroke-width: 0.5; }
.todo { fill: rgba(255, 255, 255, 0.25); stroke: rgba(100, 100, 100, 0.5); stroke-width: 0.5; }
.named { fill: rgba(255, 255, 0, 0.25); stroke: rgba(250, 150, 0, 0.85); }
.decompiled { fill: rgba(0, 255, 0, 0.5); stroke: rgba(0, 150, 0, 0.85); }
text { alignment-baseline: central; font-family: sans-serif; font-size: 15px; }

Before

Width:  |  Height:  |  Size: 227 KiB

After

Width:  |  Height:  |  Size: 227 KiB

View File

@ -535,7 +535,7 @@ def main() -> None:
viewBox="{format_decimal(-DOCUMENT_MARGIN)} {format_decimal(-DOCUMENT_MARGIN)} {format_decimal(bbox.dx + DOCUMENT_MARGIN * 2)} {format_decimal(bbox.dy + DOCUMENT_MARGIN * 2)}"
xmlns="http://www.w3.org/2000/svg">
<style>
.todo {{ fill: none; stroke: rgba(100, 100, 100, 0.5); stroke-width: 0.5; }}
.todo {{ fill: rgba(255, 255, 255, 0.25); stroke: rgba(100, 100, 100, 0.5); stroke-width: 0.5; }}
.named {{ fill: rgba(255, 255, 0, 0.25); stroke: rgba(250, 150, 0, 0.85); }}
.decompiled {{ fill: rgba(0, 255, 0, 0.5); stroke: rgba(0, 150, 0, 0.85); }}
text {{ alignment-baseline: central; font-family: sans-serif; font-size: {TEXT_SIZE}px; }}