fixed easy apply button, make some refactoring and fixed saiving cover letters
This commit is contained in:
parent
5568931234
commit
82fc6bedde
3 changed files with 181 additions and 112 deletions
|
|
@ -179,3 +179,8 @@ def printyellow(text):
|
|||
reset = "\033[0m"
|
||||
logger.debug("Printing text in yellow: %s", text)
|
||||
print(f"{yellow}{text}{reset}")
|
||||
|
||||
|
||||
def stringWidth(text, font, font_size):
|
||||
bbox = font.getbbox(text)
|
||||
return bbox[2] - bbox[0]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue