diff options
Diffstat (limited to 'main.py')
| -rw-r--r-- | main.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -265,7 +265,7 @@ class PCITool: ttk.Label(f, text=APP_TITLE, font=("Segoe UI", 17, "bold")).pack(pady=(0, 8)) - ttk.Label(f, text=f"v{VERSION} | CTC Internal Tool", + ttk.Label(f, text=f"v{VERSION}", foreground="#777").pack() ttk.Separator(f).pack(fill=tk.X, pady=16) ttk.Label(f, text="Select an SAQ type in the left panel,\n" @@ -1055,7 +1055,7 @@ def export_pdf(fpath: str, session: dict, saq: dict, get_all_items): story.append(Paragraph( f'<font color="#283593"><b>[{item["id"]}]</b></font> {q_safe}', sty_q)) - hex_col = f"#{color.hexval():06x}" + hex_col = f"#{color.hexval()}" status_line = f'<font color="{hex_col}"><b>Status: {status}</b></font>' if notes: n_safe = notes.replace("&","&").replace("<","<").replace(">",">") |
