added CTRL+A select all binding to cfg util and board util tables

This commit is contained in:
UpstreamData
2022-03-17 16:10:12 -06:00
parent d452ca36b7
commit 134b5fe0ff
4 changed files with 20 additions and 2 deletions

View File

@@ -6,6 +6,14 @@ from tools.cfg_util.cfg_util_sg.layout import window
import pyperclip
def table_select_all():
window["ip_table"].update(
select_rows=(
[row for row in range(len(window["ip_table"].Values))]
)
)
def copy_from_table(table):
selection = table.selection()
copy_values = []