Fixed Bug/Logo
All checks were successful
Potlatch Loggers Organization/ComputerKeeper/pipeline/head This commit looks good

This commit is contained in:
Josh Biltonen 2022-11-06 19:05:28 -08:00
parent 9a74b78162
commit 23ef2b3079
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -73,7 +73,7 @@ def main():
db= TinyDB("./db.json") db= TinyDB("./db.json")
computer = format_table(db.all()) computer = format_table(db.all())
# Create the window # Create the window
window = sg.Window('Computer Keeper', layout, finalize=True, use_custom_titlebar=True, titlebar_icon=COMPUTER_KEEPER_LOGO) window = sg.Window('Computer Keeper', layout, finalize=True, icon=COMPUTER_KEEPER_LOGO)
WINDOW=window WINDOW=window
window["table"].update(computer) window["table"].update(computer)
table = window['table'].Widget table = window['table'].Widget