changed board util copy/paste to copy the whole line instead of just the IP
This commit is contained in:
@@ -11,7 +11,8 @@ def copy_from_table(table):
|
|||||||
copy_values = []
|
copy_values = []
|
||||||
for each in selection:
|
for each in selection:
|
||||||
try:
|
try:
|
||||||
value = table.item(each)["values"][0]
|
# value = table.item(each)["values"][0]
|
||||||
|
value = table.item(each)["values"]
|
||||||
copy_values.append(str(value))
|
copy_values.append(str(value))
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|||||||
Reference in New Issue
Block a user