cget now returns copy of lists

This commit is contained in:
Tom Schimansky
2022-12-06 18:47:39 +01:00
parent 868b2a2f42
commit 7572f095c2
3 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,5 @@
import tkinter
import copy
from typing import Union, Tuple, List, Dict, Callable, Optional
try:
from typing import Literal
@ -321,7 +322,7 @@ class CTkSegmentedButton(CTkFrame):
elif attribute_name == "font":
return self._font
elif attribute_name == "values":
return self._value_list
return copy.copy(self._value_list)
elif attribute_name == "variable":
return self._variable
elif attribute_name == "dynamic_resizing":