Image.Update now resizes TK Label that contains it, removed wraplen setting in text label configure

Having trouble with text wrapping.  Ended up removing the wraplen from call to tktext_label.configure.
This commit is contained in:
MikeTheWatchGuy 2018-08-22 13:58:04 -04:00
parent 150779ba1c
commit b975c4f188
1 changed files with 3 additions and 2 deletions

View File

@ -788,7 +788,8 @@ class Image(Element):
else:
image = data
else: return
self.tktext_label.configure(image=image)
width, height = image.width(), image.height()
self.tktext_label.configure(image=image, width=width, height=height)
self.tktext_label.image = image
def __del__(self):
@ -1454,7 +1455,7 @@ def PackFormIntoFrame(form, containing_frame, toplevel_form):
# tktext_label = tk.Label(tk_row_frame,anchor=tk.NW, text=display_text, width=width, height=height, justify=tk.LEFT, bd=border_depth)
# Set wrap-length for text (in PIXELS) == PAIN IN THE ASS
wraplen = tktext_label.winfo_reqwidth() # width of widget in Pixels
tktext_label.configure(anchor=anchor, font=font, wraplen=wraplen*2 ) # set wrap to width of widget
tktext_label.configure(anchor=anchor, font=font) # set wrap to width of widget
if element.BackgroundColor is not None:
tktext_label.configure(background=element.BackgroundColor)
if element.TextColor != COLOR_SYSTEM_DEFAULT and element.TextColor is not None: