added chip count and fixed refreshing data

This commit is contained in:
UpstreamData
2022-01-25 15:20:21 -07:00
parent 6fd631df5b
commit 66792e1ab9
2 changed files with 31 additions and 6 deletions

View File

@@ -29,12 +29,12 @@ layout = [
[sg.Table(
values=[],
font=("Arial", 9),
headings=["IP", "Model", "Board 6 Chips", "Board 7 Chips", "Board 8 Chips"],
headings=["IP", "Model", "6 Count", "Board 6 Chips", "7 Count", "Board 7 Chips", "8 Count", "Board 8 Chips"],
auto_size_columns=False,
max_col_width=15,
justification="center",
key="ip_table",
col_widths=[9, 7, 47, 47, 47],
col_widths=[9, 7, 7, 40, 7, 40, 7, 40],
background_color="white",
text_color="black",
size=(125, 27),